We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 8 | class BatchParser implements ParserInterface |
||
| 9 | { |
||
| 10 | const PARAM_ID = 'id'; |
||
| 11 | |||
| 12 | private static $queriesDefaultValue = [ |
||
| 13 | self::PARAM_ID => null, |
||
| 14 | self::PARAM_QUERY => null, |
||
| 15 | self::PARAM_VARIABLES => null, |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param Request $request |
||
| 20 | * |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public function parse(Request $request) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Gets the body from the request. |
||
| 45 | * |
||
| 46 | * @param Request $request |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | private function getParsedBody(Request $request) |
||
| 67 | } |
||
| 68 |