mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-08 00:56:43 +00:00
684c677937
Intl is only a "suggested" extension. A lot of the NumberFormat Wizard code depends on it. That's insufficient reason to make it required, but the suggestion text now mentions this dependency explicitly. Also clean up the Wizard documentation to reflect some changes since PhpSpreadsheet 1.28.
16 lines
294 B
PHP
16 lines
294 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Style\NumberFormat\Wizard;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Style\NumberFormat\Wizard\NumberBase;
|
|
|
|
class NumberBase2 extends NumberBase
|
|
{
|
|
protected function getLocaleFormat(): string
|
|
{
|
|
return 'none';
|
|
}
|
|
}
|