From a46f6a4223cfa1c668c28de99a6d32aa3a426900 Mon Sep 17 00:00:00 2001 From: MateuszKolankowski Date: Wed, 28 May 2025 13:19:55 +0200 Subject: [PATCH 1/2] Refactor command configure methods to enforce return type --- src/bundle/Command/GeneratePlatformSchemaCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundle/Command/GeneratePlatformSchemaCommand.php b/src/bundle/Command/GeneratePlatformSchemaCommand.php index b3cbac6..03b5980 100644 --- a/src/bundle/Command/GeneratePlatformSchemaCommand.php +++ b/src/bundle/Command/GeneratePlatformSchemaCommand.php @@ -38,7 +38,7 @@ public function __construct(Generator $generator, Repository $repository, string $this->schemaRootDir = $schemaRootDir; } - protected function configure() + protected function configure(): void { $this ->addOption('dry-run', null, InputOption::VALUE_OPTIONAL, 'Do not write, output the schema only', false) From 03ad599b58ebff655476ac22cbc245b39d4e367a Mon Sep 17 00:00:00 2001 From: MateuszKolankowski Date: Wed, 28 May 2025 13:52:28 +0200 Subject: [PATCH 2/2] twig-components added to require-dev --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 2037a76..4b2bb07 100644 --- a/composer.json +++ b/composer.json @@ -41,6 +41,7 @@ "ibexa/notifications": "~5.0.x-dev", "ibexa/rector": "~5.0.x-dev", "ibexa/search": "~5.0.x-dev", + "ibexa/twig-components": "~5.0.x-dev", "ibexa/user": "~5.0.x-dev", "mikey179/vfsstream": "^1.6", "overblog/graphiql-bundle": "^1.0",