Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 7c81930

Browse files
ralphjsmitgithub-actions[bot]
authored andcommitted
Fix styling
1 parent cbb4b53 commit 7c81930

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Actions/Composer/ComposerAction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ public function execute(array $arguments, string $basepath): void
1515
);
1616

1717
$process->setTimeout(240);
18-
18+
1919
$process->run();
2020

21-
if ( ! $process->isSuccessful() ) {
21+
if (! $process->isSuccessful()) {
2222
throw new ComposerCommandFailedException($process);
2323
}
2424

src/Actions/NPM/NpmAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function execute(array $arguments, string $basepath): void
1818

1919
$process->run();
2020

21-
if ( ! $process->isSuccessful() ) {
21+
if (! $process->isSuccessful()) {
2222
throw new NpmCommandFailedException($process);
2323
}
2424

0 commit comments

Comments
 (0)