Skip to content

Commit bd94cfe

Browse files
Rename fix-recipes to sync-recipes
1 parent 955774e commit bd94cfe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Command/FixRecipesCommand.php renamed to src/Command/SyncRecipesCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Symfony\Component\Console\Output\OutputInterface;
2020
use Symfony\Flex\Lock;
2121

22-
class FixRecipesCommand extends BaseCommand
22+
class SyncRecipesCommand extends BaseCommand
2323
{
2424
private $flex;
2525

@@ -32,9 +32,9 @@ public function __construct(/* cannot be type-hinted */ $flex)
3232

3333
protected function configure()
3434
{
35-
$this->setName('symfony:fix-recipes')
36-
->setAliases(['fix-recipes'])
37-
->setDescription('Installs missing recipes.')
35+
$this->setName('symfony:sync-recipes')
36+
->setAliases(['sync-recipes', 'fix-recipes'])
37+
->setDescription('Installs or reinstalls recipes for already installed packages.')
3838
;
3939
}
4040

src/Flex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public function activate(Composer $composer, IOInterface $io)
230230
$app->add(new Command\UpdateCommand($resolver));
231231
$app->add(new Command\RemoveCommand($resolver));
232232
$app->add(new Command\UnpackCommand($resolver));
233-
$app->add(new Command\FixRecipesCommand($this));
233+
$app->add(new Command\SyncRecipesCommand($this));
234234
$app->add(new Command\GenerateIdCommand($this));
235235

236236
break;

0 commit comments

Comments
 (0)