Thumbnails.php 271 B

12345678910111213141516
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Writer\Ods;
  3. class Thumbnails extends WriterPart
  4. {
  5. /**
  6. * Write Thumbnails/thumbnail.png to PNG format.
  7. *
  8. * @return string XML Output
  9. */
  10. public function write(): string
  11. {
  12. return '';
  13. }
  14. }