AbstractWriter.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * This file is part of PHPPresentation - A pure PHP library for reading and writing
  4. * presentations documents.
  5. *
  6. * PHPPresentation is free software distributed under the terms of the GNU Lesser
  7. * General Public License version 3 as published by the Free Software Foundation.
  8. *
  9. * For the full copyright and license information, please read the LICENSE
  10. * file that was distributed with this source code. For the full list of
  11. * contributors, visit https://github.com/PHPOffice/PHPPresentation/contributors.
  12. *
  13. * @copyright 2009-2017 PHPPresentation contributors
  14. * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
  15. * @link https://github.com/PHPOffice/PHPPresentation
  16. */
  17. namespace PhpOffice\PhpPresentation\Tests\Writer;
  18. use PhpOffice\PhpPresentation\Writer;
  19. /**
  20. * Mock class for AbstractWriter
  21. *
  22. */
  23. class AbstractWriter extends Writer\AbstractWriter
  24. {
  25. /**
  26. * public wrapper for protected method
  27. *
  28. * @return \PhpOffice\PhpPresentation\Shape\AbstractDrawing[] All drawings in PhpPresentation
  29. * @throws \Exception
  30. */
  31. public function allDrawings()
  32. {
  33. return parent::allDrawings();
  34. }
  35. }