Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Aug 25, 2023
1 parent 1543baa commit 0da3c3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mjml.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected function configOptions(array $overrides): array

protected function getSideCarResult(array $arguments): string
{
if (!class_exists(MjmlFunction::class)) {
if (! class_exists(MjmlFunction::class)) {
throw SidecarPackageUnavailable::make();
}

Expand All @@ -194,7 +194,7 @@ protected function getLocalResult(array $arguments): string

$process->run();

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

Expand Down

0 comments on commit 0da3c3c

Please sign in to comment.