1
0
Fork 0

Call parent constructor in aggregate indexes

pull/255/head
Felix Becker 2017-01-24 21:09:16 +01:00
parent 4ce57811f8
commit 2193b28421
2 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ class GlobalIndex extends AbstractAggregateIndex
{ {
$this->stubsIndex = $stubsIndex; $this->stubsIndex = $stubsIndex;
$this->projectIndex = $projectIndex; $this->projectIndex = $projectIndex;
parent::__construct();
} }
/** /**

View File

@ -26,6 +26,7 @@ class ProjectIndex extends AbstractAggregateIndex
{ {
$this->sourceIndex = $sourceIndex; $this->sourceIndex = $sourceIndex;
$this->dependenciesIndex = $dependenciesIndex; $this->dependenciesIndex = $dependenciesIndex;
parent::__construct();
} }
/** /**