Fix code style

This commit is contained in:
Adrien Crivelli 2016-09-01 12:50:10 +09:00
parent 150ad19580
commit 67918419c4
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
2 changed files with 28 additions and 28 deletions

View File

@ -1,15 +1,15 @@
<?php <?php
return [ return [
[ 'ABC', '#VALUE!' ], ['ABC', '#VALUE!'],
[ -5, '#VALUE!' ], [-5, '#VALUE!'],
[ 65, 'A' ], [65, 'A'],
[ 123, '{' ], [123, '{'],
[ 126, '~' ], [126, '~'],
[ 12103, "" ], [12103, '⽇'],
[ 0x153, 'œ' ], [0x153, 'œ'],
[ 0x192, 'ƒ' ], [0x192, 'ƒ'],
[ 0x2105, '℅' ], [0x2105, '℅'],
[ 0x2211, '∑' ], [0x2211, '∑'],
[ 0x2020, '†' ], [0x2020, '†'],
]; ];

View File

@ -1,21 +1,21 @@
<?php <?php
return [ return [
[ null, '#VALUE!' ], [null, '#VALUE!'],
[ '', '#VALUE!', ], ['', '#VALUE!'],
[ 'ABC', 65 ], ['ABC', 65],
[ 123, 49 ], [123, 49],
[ true, 84 ], [true, 84],
[ 'DEF', 68 ], ['DEF', 68],
[ 'PhpSpreadsheet', 80 ], ['PhpSpreadsheet', 80],
[ 1.5, 49 ], [1.5, 49],
[ 'Mark Baker', 77 ], ['Mark Baker', 77],
[ 'mark baker', 109 ], ['mark baker', 109],
[ '£125.00', 163 ], ['£125.00', 163],
[ "", 12103], ['⽇', 12103],
[ 'œ', 0x153 ], ['œ', 0x153],
[ 'ƒ', 0x192 ], ['ƒ', 0x192],
[ '℅', 0x2105 ], ['℅', 0x2105],
[ '∑', 0x2211 ], ['∑', 0x2211],
[ '†', 0x2020 ], ['†', 0x2020],
]; ];