Use array() instead of the short notation []

This commit is contained in:
Adrian Gunawan 2015-08-14 14:26:01 +10:00
parent b89d8d5efa
commit bf6574c3b2

View file

@ -1475,7 +1475,7 @@ class HashTest extends CakeTestCase {
* @return void
*/
public function testSortInvalidType() {
$toSort = ['a', 'b', 'c'];
$toSort = array('a', 'b', 'c');
Hash::sort($toSort, '{n}', 'asc', ['regular'], true);
}