Skip to content

Commit 4d7970f

Browse files
committed
bug #760 Fix the deprecation of the id generation command (stof)
This PR was merged into the 1.12-dev branch. Discussion ---------- Fix the deprecation of the id generation command Removing the command constructor inherited the parent one passing a name as first argument. Closes #759 Commits ------- c43f0eb Fix the deprecation of the id generation command
2 parents 9d71b2f + c43f0eb commit 4d7970f

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)