mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-25 18:58:41 +00:00
17 lines
271 B
PHP
17 lines
271 B
PHP
<?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 '';
|
|
}
|
|
}
|