1 | <?php |
||
20 | class InvalidatePath extends ConfigurationAnnotation |
||
21 | { |
||
22 | /** |
||
23 | * @var array |
||
24 | */ |
||
25 | private $paths; |
||
26 | |||
27 | public function __construct( |
||
39 | 5 | /** |
|
40 | * Handle path given without explicit key. |
||
41 | 5 | * |
|
42 | 5 | * @param string $data |
|
43 | */ |
||
44 | public function setValue($data) |
||
48 | |||
49 | 4 | /** |
|
50 | * @param array $paths |
||
51 | */ |
||
52 | public function setPaths($paths) |
||
56 | |||
57 | 4 | /** |
|
58 | * @return array |
||
59 | */ |
||
60 | public function getPaths() |
||
64 | |||
65 | 4 | /** |
|
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function getAliasName() |
||
72 | |||
73 | /** |
||
74 | * {@inheritdoc} |
||
75 | */ |
||
76 | public function allowArray() |
||
80 | } |
||
81 |