Skip to content

Commit

Permalink
Merge branch 'master' of github.com:cranleighschool/isams-php
Browse files Browse the repository at this point in the history
  • Loading branch information
fredbradley committed Dec 16, 2021
2 parents f13423b + 8467585 commit 60f4101
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 60f4101

Please sign in to comment.