| 1 | <?php |
||
| 8 | class Chain implements LoaderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var ServiceLocatorInterface |
||
| 12 | */ |
||
| 13 | protected $filterLoaders; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param ServiceLocatorInterface $filterLoaders |
||
| 17 | */ |
||
| 18 | 4 | public function __construct(ServiceLocatorInterface $filterLoaders) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritDoc} |
||
| 25 | */ |
||
| 26 | 3 | public function load(array $options = []) |
|
| 46 | } |
||
| 47 |
When comparing two booleans, it is generally considered safer to use the strict comparison operator.