Skip to content

Commit

Permalink
Merge pull request #34 from cranleighschool/analysis-lKORQQ
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
fredbradley authored Dec 16, 2021
2 parents 9a79f96 + 5a35296 commit 8467585
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Exceptions/ProfessionNotPresent.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@

class ProfessionNotPresent extends \Exception
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
public function __construct($message = '', $code = 0, Throwable $previous = null)
{
if (str_contains($message, "is not present in the profession types list.")) {

if (str_contains($message, 'is not present in the profession types list.')) {
}
parent::__construct($message, $code, $previous);
}

}

0 comments on commit 8467585

Please sign in to comment.