Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | abstract class BasicCheck implements Check |
||
6 | { |
||
7 | protected $identifier; |
||
8 | |||
9 | protected $customIdentfier; |
||
10 | |||
11 | /** |
||
12 | * @param mixed $customIdentifier |
||
13 | */ |
||
14 | public function setIdentifier($customIdentfier) |
||
15 | { |
||
16 | $this->customIdentfier = $customIdentfier; |
||
17 | } |
||
18 | |||
19 | protected function getCheckIdentifier() |
||
22 | } |
||
23 | |||
24 | final public function getIdentifier() |
||
30 | } |
||
31 | } |
||
33 |