Updates to 3rd party libraries
Add Dockerfile and specific docker-php.ini
This commit is contained in:
76
inc/vendor/phpoffice/phpspreadsheet/tests/data/Cell/DefaultValueBinder.php
vendored
Normal file
76
inc/vendor/phpoffice/phpspreadsheet/tests/data/Cell/DefaultValueBinder.php
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
[
|
||||
'null',
|
||||
null,
|
||||
],
|
||||
[
|
||||
'e',
|
||||
'#NULL!',
|
||||
],
|
||||
[
|
||||
'b',
|
||||
false,
|
||||
],
|
||||
[
|
||||
'b',
|
||||
true,
|
||||
],
|
||||
[
|
||||
's',
|
||||
'FALSE',
|
||||
],
|
||||
[
|
||||
's',
|
||||
'TRUE',
|
||||
],
|
||||
[
|
||||
's',
|
||||
'',
|
||||
],
|
||||
[
|
||||
's',
|
||||
'ABC',
|
||||
],
|
||||
[
|
||||
'n',
|
||||
'123',
|
||||
],
|
||||
[
|
||||
'n',
|
||||
123,
|
||||
],
|
||||
[
|
||||
'n',
|
||||
0.123,
|
||||
],
|
||||
[
|
||||
'n',
|
||||
'-123',
|
||||
],
|
||||
[
|
||||
'n',
|
||||
'1.23E4',
|
||||
],
|
||||
[
|
||||
'n',
|
||||
'-1.23E4',
|
||||
],
|
||||
[
|
||||
'n',
|
||||
'1.23E-4',
|
||||
],
|
||||
[
|
||||
's',
|
||||
'000123',
|
||||
],
|
||||
[
|
||||
'f',
|
||||
'=123',
|
||||
],
|
||||
[
|
||||
'e',
|
||||
'#DIV/0!',
|
||||
],
|
||||
];
|
Reference in New Issue
Block a user