| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class AbstractSchemaConfiguratorExecuter |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Initialize the configuration if a certain condition is satisfied |
||
| 13 | */ |
||
| 14 | public function init(): void |
||
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Provide the ID of the custom post containing the Schema Configuration block |
||
| 24 | */ |
||
| 25 | abstract protected function getCustomPostID(): ?int; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Initialize the configuration of services before the execution of the GraphQL query |
||
| 29 | */ |
||
| 30 | abstract protected function getSchemaConfigurator(): SchemaConfiguratorInterface; |
||
| 31 | } |
||
| 32 |