PhpSpreadsheet/tests/data/Cell/DefaultValueBinder.php
Adrien Crivelli 09d456e477
Introduce PHP-CS-Fixer for stricter code style rules
PHP-CS-Fixer allow to check different things than phpcs and it allows
code to be more consistent. Configuration can be changed in `.php_cs`
2016-08-17 00:33:57 +09:00

23 lines
401 B
PHP

<?php
return [
[[null], 'null'],
[['#NULL!'], 'e'],
[[false], 'b'],
[[true], 'b'],
[['FALSE'], 's'],
[['TRUE'], 's'],
[[''], 's'],
[['ABC'], 's'],
[['123'], 'n'],
[[123], 'n'],
[[0.123], 'n'],
[['-123'], 'n'],
[['1.23E4'], 'n'],
[['-1.23E4'], 'n'],
[['1.23E-4'], 'n'],
[['000123'], 's'],
[['=123'], 'f'],
[['#DIV/0!'], 'e'],
];