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

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphjsmit authored and github-actions[bot] committed Apr 28, 2022
1 parent cbb4b53 commit 7c81930
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Actions/Composer/ComposerAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ public function execute(array $arguments, string $basepath): void
);

$process->setTimeout(240);

$process->run();

if ( ! $process->isSuccessful() ) {
if (! $process->isSuccessful()) {
throw new ComposerCommandFailedException($process);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Actions/NPM/NpmAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function execute(array $arguments, string $basepath): void

$process->run();

if ( ! $process->isSuccessful() ) {
if (! $process->isSuccessful()) {
throw new NpmCommandFailedException($process);
}

Expand Down

0 comments on commit 7c81930

Please sign in to comment.