Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
19 | class Repository extends Annotation |
||
20 | { |
||
21 | /** |
||
22 | * @var string The name of the storage holding the repository |
||
23 | */ |
||
24 | public $storage = 'default'; |
||
25 | |||
26 | public function getName() |
||
27 | { |
||
28 | return (string) $this->value; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getStorage() |
||
37 | } |
||
38 | } |
||
39 |