Skip to content

Commit c43f0eb

Browse files
authored
Fix the deprecation of the id generation command
Removing the command constructor inherited the parent one passing a name as first argument
1 parent 9d71b2f commit c43f0eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Flex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class_exists(__NAMESPACE__.str_replace('/', '\\', substr($file, \strlen(__DIR__)
275275
$app->add(new Command\UnpackCommand($resolver));
276276
$app->add(new Command\RecipesCommand($this, $this->lock, $rfs));
277277
$app->add(new Command\InstallRecipesCommand($this, $this->options->get('root-dir')));
278-
$app->add(new Command\GenerateIdCommand($this));
278+
$app->add(new Command\GenerateIdCommand());
279279
$app->add(new Command\DumpEnvCommand($this->config, $this->options));
280280

281281
break;

0 commit comments

Comments
 (0)