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 SchemaBuilder |
||
| 9 | { |
||
| 10 | /** @var ResolverInterface */ |
||
| 11 | private $typeResolver; |
||
| 12 | |||
| 13 | /** @var bool */ |
||
| 14 | private $enableValidation; |
||
| 15 | |||
| 16 | public function __construct(ResolverInterface $typeResolver, $enableValidation = false) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param null|string $queryAlias |
||
| 24 | * @param null|string $mutationAlias |
||
| 25 | * @param null|string $subscriptionAlias |
||
| 26 | * |
||
| 27 | * @return Schema |
||
| 28 | */ |
||
| 29 | public function create($queryAlias = null, $mutationAlias = null, $subscriptionAlias = null) |
||
| 48 | } |
||
| 49 |