We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
17 | class BatchParser implements ParserInterface |
||
18 | { |
||
19 | const PARAM_ID = 'id'; |
||
20 | |||
21 | private static $queriesDefaultValue = [ |
||
22 | self::PARAM_ID => null, |
||
23 | self::PARAM_QUERY => null, |
||
24 | self::PARAM_VARIABLES => null, |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * @param Request $request |
||
29 | * |
||
30 | * @return array |
||
31 | */ |
||
32 | public function parse(Request $request) |
||
51 | |||
52 | /** |
||
53 | * Gets the body from the request. |
||
54 | * |
||
55 | * @param Request $request |
||
56 | * |
||
57 | * @return array |
||
58 | */ |
||
59 | private function getParsedBody(Request $request) |
||
76 | } |
||
77 |