mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Use array() instead of the short notation []
This commit is contained in:
parent
b89d8d5efa
commit
bf6574c3b2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue