Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class PluginLoader |
||
11 | { |
||
12 | /** |
||
13 | * @var ContainerInterface |
||
14 | */ |
||
15 | private $container; |
||
16 | |||
17 | /** |
||
18 | * @var PluginLocator |
||
19 | */ |
||
20 | private $locator; |
||
21 | |||
22 | /** |
||
23 | * @param ContainerInterface $container |
||
24 | */ |
||
25 | public function __construct(ContainerInterface $container) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return array |
||
33 | */ |
||
34 | public function loadPlugins(): array |
||
47 | } |
||
48 | } |