We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 13 | class SchemaBuilder |
||
| 14 | { |
||
| 15 | /** @var TypeResolver */ |
||
| 16 | private $typeResolver; |
||
| 17 | |||
| 18 | /** @var bool */ |
||
| 19 | private $enableValidation; |
||
| 20 | |||
| 21 | public function __construct(TypeResolver $typeResolver, $enableValidation = false) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param null|string $queryAlias |
||
| 29 | * @param null|string $mutationAlias |
||
| 30 | * @param null|string $subscriptionAlias |
||
| 31 | * @param ResolverMapInterface[] $resolverMaps |
||
| 32 | * @param string[] $types |
||
| 33 | * |
||
| 34 | * @return ExtensibleSchema |
||
| 35 | */ |
||
| 36 | public function create($queryAlias = null, $mutationAlias = null, $subscriptionAlias = null, array $resolverMaps = [], array $types = []) |
||
| 52 | |||
| 53 | private function buildSchemaArguments(Type $query = null, Type $mutation = null, Type $subscription = null, array $types = []) |
||
| 67 | } |
||
| 68 |