Skip to content

Commit

Permalink
Fixed test for PHP 5.3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Aug 8, 2014
1 parent d889016 commit 9e6029d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ public function testDump()
public function testDumpWithMethod()
{
$object = new \SplDoublyLinkedList;
$definition = new FunctionCallDefinition([$object, 'push']);
$definition = new FunctionCallDefinition(array($object, 'push'));
$dumper = new FunctionCallDefinitionDumper();

$str = 'SplDoublyLinkedList::push(
Expand Down

0 comments on commit 9e6029d

Please sign in to comment.