Skip to content
This repository has been archived by the owner on Jun 12, 2022. It is now read-only.

Commit

Permalink
Apply fixes from StyleCI (#24)
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
Warrick Bayman authored Apr 21, 2020
1 parent 63b26cf commit 604209b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ConfigurationProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function setConfig($config): void
try {
$config = json_decode($config, true, 512, JSON_THROW_ON_ERROR);
} catch (\Exception $e) {
throw new \JsonException('Unable to read config.' . "\n" . $e->getMessage());
throw new \JsonException('Unable to read config.'."\n".$e->getMessage());
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/ServerException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class ServerException extends \Exception
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
public function __construct($message = '', $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
Expand Down

0 comments on commit 604209b

Please sign in to comment.