Skip to content

Commit

Permalink
Fix PHP 5.3 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabordemooij committed Apr 2, 2022
1 parent df07e0e commit 2c8ce8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/RedUNIT/Base/Bean.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Bean extends Base
*/
public function testTrimport()
{
$array = ['greeting'=>' hello ', 'to'=>' world '];
$array = array('greeting'=>' hello ', 'to'=>' world ');
$bean = R::dispense('greeting');
$bean->trimport($array);
asrt($bean->greeting,'hello');
Expand Down

0 comments on commit 2c8ce8a

Please sign in to comment.