| 1 | <?php |
||
| 11 | final class AggregateServiceProvider extends AbstractServiceProvider implements |
||
| 12 | BootableServiceProviderInterface |
||
| 13 | { |
||
| 14 | use ContainerAwareTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var ServiceProviderInterface[] |
||
| 18 | */ |
||
| 19 | private $providers; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param ServiceProviderInterface[] $providers |
||
| 23 | */ |
||
| 24 | public function __construct(array $providers) |
||
| 36 | |||
| 37 | public function setContainer(ContainerInterface $container) |
||
| 45 | |||
| 46 | public function boot() |
||
| 54 | |||
| 55 | public function register() |
||
| 61 | } |
||
| 62 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..