Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Shared/StringHelperNoIconv.php
T
2025-09-01 07:45:27 -07:00

19 lines
332 B
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
class StringHelperNoIconv extends StringHelper
{
/**
* Simulate that iconv is not available.
*/
public static function getIsIconvEnabled(): bool
{
return false;
}
}