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 ExtensibleSchema extends Schema |
||
9 | { |
||
10 | /** @var SchemaExtensionInterface[] */ |
||
11 | private $extensions = []; |
||
12 | |||
13 | /** |
||
14 | * @param SchemaExtensionInterface[] $extensions |
||
15 | * |
||
16 | * @return $this |
||
17 | */ |
||
18 | public function setExtensions(array $extensions) |
||
26 | |||
27 | /** |
||
28 | * @param SchemaExtensionInterface $extension |
||
29 | */ |
||
30 | 72 | public function addExtension(SchemaExtensionInterface $extension) |
|
34 | |||
35 | /** |
||
36 | * @return $this |
||
37 | */ |
||
38 | 68 | public function processExtensions() |
|
46 | } |
||
47 |