mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-24 09:09:22 +00:00
19 lines
332 B
PHP
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;
|
|
}
|
|
}
|