We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
18 | class SchemaBuilder |
||
19 | { |
||
20 | /** |
||
21 | * @var ResolverInterface |
||
22 | */ |
||
23 | private $typeResolver; |
||
24 | |||
25 | /** @var bool */ |
||
26 | private $enableValidation; |
||
27 | |||
28 | public function __construct(ResolverInterface $typeResolver, $enableValidation = false) |
||
33 | |||
34 | /** |
||
35 | * @param null|string $queryAlias |
||
36 | * @param null|string $mutationAlias |
||
37 | * @param null|string $subscriptionAlias |
||
38 | * |
||
39 | * @return Schema |
||
40 | */ |
||
41 | public function create($queryAlias = null, $mutationAlias = null, $subscriptionAlias = null) |
||
56 | } |
||
57 |