mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-10 01:56:26 +00:00
15 lines
283 B
PHP
15 lines
283 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Shared;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
|
|
|
|
class StringHelperNoIconv3 extends StringHelper
|
|
{
|
|
protected static ?bool $isIconvEnabled = null;
|
|
|
|
protected static bool $iconvTest3 = true;
|
|
}
|