1 | <?php |
||
17 | final class Decoration implements DecorationInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var ServiceInterface |
||
21 | */ |
||
22 | private $service; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $decorates; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $decorationInnerName; |
||
33 | |||
34 | 3 | /** |
|
35 | * @param ServiceInterface $service |
||
36 | 3 | * @param string $decorates |
|
37 | * @param string $decorationInnerName |
||
38 | 3 | */ |
|
39 | 3 | public function __construct(ServiceInterface $service, $decorates, $decorationInnerName = null) |
|
48 | |||
49 | 3 | /** |
|
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getName() |
||
56 | |||
57 | 3 | /** |
|
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function getClass() |
||
64 | |||
65 | 3 | /** |
|
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function getArguments() |
||
72 | |||
73 | 3 | /** |
|
74 | * {@inheritdoc} |
||
75 | */ |
||
76 | public function getAutowiringTypes() |
||
80 | |||
81 | 3 | /** |
|
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | public function getTags() |
||
88 | |||
89 | 3 | /** |
|
90 | * {@inheritdoc} |
||
91 | */ |
||
92 | public function getDecorates() |
||
96 | |||
97 | /** |
||
98 | * {@inheritdoc} |
||
99 | */ |
||
100 | public function getDecorationInnerName() |
||
104 | } |
||
105 |