Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class RepositoryException extends InvalidArgumentException |
||
10 | { |
||
11 | /** |
||
12 | * @var string $repositoryCode |
||
13 | */ |
||
14 | protected $repositoryCode; |
||
15 | |||
16 | /** |
||
17 | * setRepositoryCode. |
||
18 | * |
||
19 | * @access public |
||
20 | * @param string $code |
||
21 | * @return void |
||
22 | */ |
||
23 | 7 | public function setRepositoryCode(string $code): void |
|
26 | 7 | } |
|
27 | |||
28 | /** |
||
29 | * Returns repository code. |
||
30 | * |
||
31 | * @access public |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getRepositoryCode(): string |
||
39 |