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 array */ |
||
| 26 | private $typesMapping; |
||
| 27 | |||
| 28 | /** @var bool */ |
||
| 29 | private $enableValidation; |
||
| 30 | |||
| 31 | 25 | public function __construct(ResolverInterface $typeResolver, array $typesMapping, $enableValidation = false) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @param null|string $queryAlias |
||
| 40 | * @param null|string $mutationAlias |
||
| 41 | * @param null|string $subscriptionAlias |
||
| 42 | * |
||
| 43 | * @return Schema |
||
| 44 | */ |
||
| 45 | 25 | public function create($queryAlias = null, $mutationAlias = null, $subscriptionAlias = null) |
|
| 56 | |||
| 57 | 25 | private function warmUpTypes() |
|
| 63 | } |
||
| 64 |