Fix code style
This commit is contained in:
parent
150ad19580
commit
67918419c4
|
@ -1,15 +1,15 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
[ 'ABC', '#VALUE!' ],
|
||||
[ -5, '#VALUE!' ],
|
||||
[ 65, 'A' ],
|
||||
[ 123, '{' ],
|
||||
[ 126, '~' ],
|
||||
[ 12103, "⽇" ],
|
||||
[ 0x153, 'œ' ],
|
||||
[ 0x192, 'ƒ' ],
|
||||
[ 0x2105, '℅' ],
|
||||
[ 0x2211, '∑' ],
|
||||
[ 0x2020, '†' ],
|
||||
['ABC', '#VALUE!'],
|
||||
[-5, '#VALUE!'],
|
||||
[65, 'A'],
|
||||
[123, '{'],
|
||||
[126, '~'],
|
||||
[12103, '⽇'],
|
||||
[0x153, 'œ'],
|
||||
[0x192, 'ƒ'],
|
||||
[0x2105, '℅'],
|
||||
[0x2211, '∑'],
|
||||
[0x2020, '†'],
|
||||
];
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
[ null, '#VALUE!' ],
|
||||
[ '', '#VALUE!', ],
|
||||
[ 'ABC', 65 ],
|
||||
[ 123, 49 ],
|
||||
[ true, 84 ],
|
||||
[ 'DEF', 68 ],
|
||||
[ 'PhpSpreadsheet', 80 ],
|
||||
[ 1.5, 49 ],
|
||||
[ 'Mark Baker', 77 ],
|
||||
[ 'mark baker', 109 ],
|
||||
[ '£125.00', 163 ],
|
||||
[ "⽇", 12103],
|
||||
[ 'œ', 0x153 ],
|
||||
[ 'ƒ', 0x192 ],
|
||||
[ '℅', 0x2105 ],
|
||||
[ '∑', 0x2211 ],
|
||||
[ '†', 0x2020 ],
|
||||
[null, '#VALUE!'],
|
||||
['', '#VALUE!'],
|
||||
['ABC', 65],
|
||||
[123, 49],
|
||||
[true, 84],
|
||||
['DEF', 68],
|
||||
['PhpSpreadsheet', 80],
|
||||
[1.5, 49],
|
||||
['Mark Baker', 77],
|
||||
['mark baker', 109],
|
||||
['£125.00', 163],
|
||||
['⽇', 12103],
|
||||
['œ', 0x153],
|
||||
['ƒ', 0x192],
|
||||
['℅', 0x2105],
|
||||
['∑', 0x2211],
|
||||
['†', 0x2020],
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue