Total Complexity | 5 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class Container |
||
15 | { |
||
16 | /** |
||
17 | * @var Stub |
||
18 | */ |
||
19 | private $stub; |
||
20 | |||
21 | /** |
||
22 | * @var Manifest |
||
23 | */ |
||
24 | private $manifest; |
||
25 | |||
26 | /** |
||
27 | * @param Stub $stub |
||
28 | * @param Manifest $manifest |
||
29 | */ |
||
30 | public function __construct(Stub $stub, Manifest $manifest) |
||
31 | { |
||
32 | $this->stub = $stub; |
||
33 | $this->manifest = $manifest; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return Stub |
||
38 | */ |
||
39 | public function getStub() |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return Manifest |
||
46 | */ |
||
47 | public function getManifest() |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getAlias() |
||
58 | } |
||
59 | } |
||
60 |