mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-10 01:56:26 +00:00
13 lines
250 B
PHP
13 lines
250 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Shared;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
|
|
|
|
class StringHelperNoIntl extends StringHelper
|
|
{
|
|
protected static string $testClass = 'simulateIntlUnavilable';
|
|
}
|