1 | <?php |
||
21 | abstract class AbstractByKeyGetRequest extends AbstractByIdGetRequest |
||
22 | { |
||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | 6 | public function getKey() |
|
30 | |||
31 | /** |
||
32 | * @param string $key |
||
33 | * @return $this |
||
34 | */ |
||
35 | 1 | public function setKey($key) |
|
36 | { |
||
37 | 1 | return $this->setId($key); |
|
38 | } |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | * @internal |
||
43 | */ |
||
44 | 5 | protected function getPath() |
|
48 | } |
||
49 |