mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 13:08:19 +00:00
d0fae3f57a
* Eliminate Some Phpstan Annotations Some changes are possible due to Php8+ features like null-safe operators and Stringable. * Possible Uninitialized Variable Scrutinizer might be technically correct. * CellAddress Static -> Self I don't understand the use case for extending it, which would be the reason for using static rather than self. * Update Worksheet.php
14 lines
182 B
PHP
14 lines
182 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Cell;
|
|
|
|
class StringableObject
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'abc';
|
|
}
|
|
}
|