Skip to content

Commit

Permalink
Merge branch 'main' of github.com:spatie/mjml-php
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Aug 25, 2023
2 parents cb364d9 + a30a341 commit 05191fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `mjml-php` will be documented in this file.

## 1.0.0 - 2023-08-25

- stable release

## 0.0.6 - 2023-08-23

- Fix an issue where settings weren't kept
Expand Down
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 05191fb

Please sign in to comment.