Skip to content

Commit

Permalink
Fixed PHP 7 warning where counting a null value.
Browse files Browse the repository at this point in the history
Just set child arguments as an array.
  • Loading branch information
piraz committed Jul 16, 2020
1 parent 744cd0b commit 014b340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/verbs/InstantiateVerb.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class InstantiateVerb extends AbstractVerb
*
* @var array
*/
private $childArguments;
private $childArguments = array();

/**
* Returnt the verb class
Expand Down

0 comments on commit 014b340

Please sign in to comment.