Skip to content

Commit

Permalink
Fixed tests for php5 symfony#30056
Browse files Browse the repository at this point in the history
  • Loading branch information
karser committed Feb 6, 2019
1 parent acbf944 commit 9578adc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -25,9 +25,9 @@ class ConstructorExtractor implements PropertyTypeExtractorInterface
private $extractors;

/**
* @param ConstructorArgumentTypeExtractorInterface[] $extractors
* @param iterable|ConstructorArgumentTypeExtractorInterface[] $extractors
*/
public function __construct(array $extractors)
public function __construct($extractors = [])
{
$this->extractors = $extractors;
}
Expand Down

0 comments on commit 9578adc

Please sign in to comment.