| 1 | <?php |
||
| 6 | abstract class AbstractJsonResourceRequest implements ResourceRequest |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var JsonBody |
||
| 10 | */ |
||
| 11 | private $body; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param JsonBody $body |
||
| 15 | */ |
||
| 16 | public function __construct(JsonBody $body) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $selector |
||
| 23 | * @return \Kartenmacherei\RestFramework\JsonArray|\Kartenmacherei\RestFramework\JsonObject |
||
| 24 | */ |
||
| 25 | public function getFromJsonInBody(string $selector) |
||
| 29 | } |
||
| 30 |