Skip to content

Commit

Permalink
Use array() instead of the short notation []
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gunawan committed Aug 14, 2015
1 parent b89d8d5 commit bf6574c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Utility/HashTest.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ public function testSortRegularIgnoreCase() {
* @return void * @return void
*/ */
public function testSortInvalidType() { public function testSortInvalidType() {
$toSort = ['a', 'b', 'c']; $toSort = array('a', 'b', 'c');
Hash::sort($toSort, '{n}', 'asc', ['regular'], true); Hash::sort($toSort, '{n}', 'asc', ['regular'], true);
} }


Expand Down

0 comments on commit bf6574c

Please sign in to comment.