We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 10 | class ExtensibleSchema extends Schema |
||
| 11 | { |
||
| 12 | 92 | public function __construct($config) |
|
| 18 | |||
| 19 | /** @var SchemaExtensionInterface[] */ |
||
| 20 | private $extensions = []; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param SchemaExtensionInterface[] $extensions |
||
| 24 | * |
||
| 25 | * @return $this |
||
| 26 | */ |
||
| 27 | 88 | public function setExtensions(array $extensions) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @param SchemaExtensionInterface $extension |
||
| 39 | */ |
||
| 40 | 88 | public function addExtension(SchemaExtensionInterface $extension) |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return $this |
||
| 47 | */ |
||
| 48 | 83 | public function processExtensions() |
|
| 56 | |||
| 57 | 92 | private function addDefaultFallBackToTypeLoader(SchemaConfig $schemaConfig) |
|
| 80 | } |
||
| 81 |