17 lines
271 B
PHP
Executable File
17 lines
271 B
PHP
Executable File
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Writer\Ods;
|
|
|
|
class Thumbnails extends WriterPart
|
|
{
|
|
/**
|
|
* Write Thumbnails/thumbnail.png to PNG format.
|
|
*
|
|
* @return string XML Output
|
|
*/
|
|
public function write(): string
|
|
{
|
|
return '';
|
|
}
|
|
}
|