1 | <?php |
||
6 | abstract class Body |
||
7 | { |
||
8 | /** |
||
9 | * @param string $inputStream |
||
10 | * @return Body|JsonBody |
||
11 | * @throws UnsupportedRequestBodyException |
||
12 | */ |
||
13 | public static function fromSuperGlobals(string $inputStream = 'php://input'): Body |
||
38 | |||
39 | /** |
||
40 | * @return bool |
||
41 | */ |
||
42 | abstract public function isJson(): bool; |
||
43 | } |
||
44 |