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 SchemaBuilder |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var ResolverInterface |
||
| 21 | */ |
||
| 22 | private $typeResolver; |
||
| 23 | |||
| 24 | /** @var bool */ |
||
| 25 | private $enableValidation; |
||
| 26 | |||
| 27 | 15 | public function __construct(ResolverInterface $typeResolver, $enableValidation = false) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param null|string $queryAlias |
||
| 35 | * @param null|string $mutationAlias |
||
| 36 | * @param null|string $subscriptionAlias |
||
| 37 | * |
||
| 38 | * @return Schema |
||
| 39 | */ |
||
| 40 | 15 | public function create($queryAlias = null, $mutationAlias = null, $subscriptionAlias = null) |
|
| 64 | } |
||
| 65 |