Skip to content

Commit b76b63d

Browse files
committed
Merge pull request #102 from malikdoksoz/malikdoksoz-patch-1
Fix: add void return type to configure() for Symfony 8 compatibility (cherry picked from commit b426558)
1 parent 213e701 commit b76b63d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Commands/MakeTreePageCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class MakeTreePageCommand extends Command
7373

7474
public static bool $shouldCheckModelsForSoftDeletes = true;
7575

76-
protected function configure()
76+
protected function configure(): void
7777
{
7878
$this->addArgument(
7979
name: 'name',

src/Commands/MakeTreeWidgetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class MakeTreeWidgetCommand extends Command
6464

6565
protected string $widgetsDirectory;
6666

67-
protected function configure()
67+
protected function configure(): void
6868
{
6969
$this->addArgument(
7070
name: 'name',

0 commit comments

Comments
 (0)