From 5a352960c51de93ef28320de97a317f447292f43 Mon Sep 17 00:00:00 2001 From: Fred Bradley Date: Thu, 16 Dec 2021 11:00:29 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- src/Exceptions/ProfessionNotPresent.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Exceptions/ProfessionNotPresent.php b/src/Exceptions/ProfessionNotPresent.php index f6e8b5b..c95537e 100644 --- a/src/Exceptions/ProfessionNotPresent.php +++ b/src/Exceptions/ProfessionNotPresent.php @@ -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); } - }