diff options
author | ytetsuro <phper.0o0@gmail.com> | 2018-04-14 08:57:59 +0200 |
---|---|---|
committer | ytetsuro <phper.0o0@gmail.com> | 2018-04-14 08:57:59 +0200 |
commit | deba4d95c0704779a2059f7f06306a4848f7a0c0 (patch) | |
tree | 5d8ea07367b15066a9992f498f55916f136f7b03 /tests | |
parent | 4ccc1fc93050d043b4483e5d72f92fafa32002e5 (diff) |
fix: change to the old array() notation
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/database/query_builder/like_test.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/codeigniter/database/query_builder/like_test.php b/tests/codeigniter/database/query_builder/like_test.php index f8409092a..4d8673d99 100644 --- a/tests/codeigniter/database/query_builder/like_test.php +++ b/tests/codeigniter/database/query_builder/like_test.php @@ -119,11 +119,11 @@ class Like_test extends CI_TestCase { public function like_set_side_provider() { - return [ - ['Developer', 'none', 'Developer'], - ['tician', 'before', 'Politician'], - ['Accou', 'after', 'Accountant'], - ['usicia', 'both', 'Musician'], - ]; + return array( + array('Developer', 'none', 'Developer'), + array('tician', 'before', 'Politician'), + array('Accou', 'after', 'Accountant'), + array('usicia', 'both', 'Musician'), + ); } } |