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) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param SchemaExtensionInterface $extension |
||
| 30 | */ |
||
| 31 | public function addExtension(SchemaExtensionInterface $extension) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return $this |
||
| 38 | */ |
||
| 39 | public function processExtensions() |
||
| 47 | } |
||
| 48 |