Skip to content

Commit e0d8f8e

Browse files
authored
Added missing type hint to command configure methods (#85)
1 parent 7a76d26 commit e0d8f8e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"ibexa/notifications": "~5.0.x-dev",
4242
"ibexa/rector": "~5.0.x-dev",
4343
"ibexa/search": "~5.0.x-dev",
44+
"ibexa/twig-components": "~5.0.x-dev",
4445
"ibexa/user": "~5.0.x-dev",
4546
"mikey179/vfsstream": "^1.6",
4647
"overblog/graphiql-bundle": "^1.0",

src/bundle/Command/GeneratePlatformSchemaCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(Generator $generator, Repository $repository, string
3838
$this->schemaRootDir = $schemaRootDir;
3939
}
4040

41-
protected function configure()
41+
protected function configure(): void
4242
{
4343
$this
4444
->addOption('dry-run', null, InputOption::VALUE_OPTIONAL, 'Do not write, output the schema only', false)

0 commit comments

Comments
 (0)