1 | <?php |
||
5 | class ParameterAttributesProvider implements AttributesInjectionProviderInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | protected $overwrites; |
||
11 | |||
12 | /** |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $enabled; |
||
16 | |||
17 | /** |
||
18 | * @param array $overwrites |
||
19 | * @param bool $enabled |
||
20 | */ |
||
21 | public function __construct($overwrites = [], $enabled = false) |
||
26 | |||
27 | /** |
||
28 | * @return bool |
||
29 | */ |
||
30 | public function isEnabled() |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getAttributes() |
||
42 | } |
||
43 |