Skip to content

Commit 1aba65e

Browse files
committed
Fix standards
Signed-off-by: Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
1 parent 3830c9b commit 1aba65e

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

src/Command/InstallCommand.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,12 @@ protected function configure(): void
4343
{
4444
$this
4545
->setName('install')
46-
->setDescription('Installs and synchronizes dev-tools scripts, GitHub Actions workflows, and .editorconfig in the root project.')
47-
->setHelp('This command adds or updates dev-tools scripts in composer.json, copies reusable GitHub Actions workflows, and ensures .editorconfig is present and up to date.');
46+
->setDescription(
47+
'Installs and synchronizes dev-tools scripts, GitHub Actions workflows, and .editorconfig in the root project.'
48+
)
49+
->setHelp(
50+
'This command adds or updates dev-tools scripts in composer.json, copies reusable GitHub Actions workflows, and ensures .editorconfig is present and up to date.'
51+
);
4852
}
4953

5054
/**

src/Composer/Plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function onPostInstall(Event $event): void
7979
{
8080
$event->getComposer()
8181
->getEventDispatcher()
82-
->dispatchScript('install', true);
82+
->dispatchScript('install', true);
8383
}
8484

8585
/**
@@ -96,7 +96,7 @@ public function onPostUpdate(Event $event): void
9696
{
9797
$event->getComposer()
9898
->getEventDispatcher()
99-
->dispatchScript('install', true);
99+
->dispatchScript('install', true);
100100
}
101101

102102
/**

0 commit comments

Comments
 (0)