mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-02 21:48:11 +00:00
2bb1c9df3c
A dependency checker found the following minor problems: - `TIMEVALUE` uses the wrong case for `DateTime`. - The `filter` extension is used but is not declared as a dependency. - The `exif` extension is used but is not declared as a dependency. Php tolerates the first, but the solution is so trivial that it might as well be applied. You have to go out of your way to not include `filter` - is it almost always builtin. Nevertheless, it shouldn't hurt to explicitly declare it. `exif` is used in only one place, and, if it's not available there, we fall back to `GD`, which *is* a dependency. Getting rid of the `exif` portion should be harmless.
13 lines
254 B
PHP
13 lines
254 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Worksheet\MemoryDrawing;
|
|
|
|
class MemoryDrawing2 extends MemoryDrawing
|
|
{
|
|
protected static string $getImageSize = 'getImageSizeXXXXXXX';
|
|
}
|