| 1 | <?php |
||
| 19 | class InvalidatePath extends ConfigurationAnnotation |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | private $paths; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Handle path given without explicit key. |
||
| 28 | * |
||
| 29 | * @param string $data |
||
| 30 | */ |
||
| 31 | public function setValue($data) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param array $paths |
||
| 38 | */ |
||
| 39 | public function setPaths($paths) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return array |
||
| 46 | */ |
||
| 47 | public function getPaths() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * {@inheritdoc} |
||
| 54 | */ |
||
| 55 | public function getAliasName() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritdoc} |
||
| 62 | */ |
||
| 63 | public function allowArray() |
||
| 67 | } |
||
| 68 |