Files
2025-12-02 00:54:10 -08:00

15 lines
304 B
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
class StringHelperNoIconv extends StringHelper
{
protected static ?bool $isIconvEnabled = null;
protected static string $iconvName = 'simulateIconvUnavilable';
}