| 1 | <?php |
||
| 9 | abstract class AbstractResult |
||
| 10 | { |
||
| 11 | private $requestQuery; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Sets the request query |
||
| 15 | * |
||
| 16 | * @param string $requestQuery |
||
| 17 | */ |
||
| 18 | public function setRequestQuery($requestQuery) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Return the request-query |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getRequestQuery() |
||
| 32 | } |
||
| 33 |