1 | <?php |
||
17 | final class Decoration implements DecorationInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var ServiceInterface |
||
21 | */ |
||
22 | private $service; |
||
23 | |||
24 | /** |
||
25 | * @var array<string, string> |
||
26 | */ |
||
27 | private $decoration; |
||
28 | |||
29 | /** |
||
30 | * @param ServiceInterface $service |
||
31 | * @param string $decorates |
||
32 | * @param string $decorationInnerName |
||
33 | */ |
||
34 | public function __construct(ServiceInterface $service, $decorates, $decorationInnerName = null) |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function getName() |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function getClass() |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function getArguments() |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function getAutowiringTypes() |
||
75 | |||
76 | /** |
||
77 | * {@inheritdoc} |
||
78 | */ |
||
79 | public function getTags() |
||
83 | |||
84 | /** |
||
85 | * {@inheritdoc} |
||
86 | */ |
||
87 | public function getDecoration() |
||
91 | } |
||
92 |