Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | abstract class AbstractByKeyHeadRequest extends AbstractByIdHeadRequest |
||
13 | { |
||
14 | /** |
||
15 | * @return string |
||
16 | */ |
||
17 | public function getKey() |
||
18 | { |
||
19 | return $this->getId(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param string $key |
||
24 | * @return $this |
||
25 | */ |
||
26 | public function setKey($key) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | * @internal |
||
34 | */ |
||
35 | protected function getPath() |
||
40 |