Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
13 | abstract class AbstractModule { |
||
14 | /** @var Configuration */ |
||
15 | protected $config; |
||
16 | |||
17 | /** |
||
18 | * @param Configuration $config |
||
19 | */ |
||
20 | public function __construct(Configuration $config) { |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return Configuration |
||
26 | */ |
||
27 | public function config(): Configuration { |
||
31 |