Total Complexity | 3 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class SystemLoader implements Loader |
||
14 | { |
||
15 | /** |
||
16 | * @var \AppBundle\Service\SystemService |
||
17 | */ |
||
18 | protected $systemService; |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | * |
||
23 | * @param \AppBundle\Service\SystemService $systemService |
||
24 | */ |
||
25 | public function __construct(SystemService $systemService) |
||
26 | { |
||
27 | $this->systemService = $systemService; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function load(Tenant $tenant) |
||
56 | } |
||
57 | } |
||
59 |