From 06cc7bf68623e4f91be5020d666847951ad148b6 Mon Sep 17 00:00:00 2001 From: PHP CS Fixer Date: Fri, 26 Aug 2022 19:35:44 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/Contracts/TenantCouldNotBeIdentifiedException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contracts/TenantCouldNotBeIdentifiedException.php b/src/Contracts/TenantCouldNotBeIdentifiedException.php index 2f301c37..0066291f 100644 --- a/src/Contracts/TenantCouldNotBeIdentifiedException.php +++ b/src/Contracts/TenantCouldNotBeIdentifiedException.php @@ -20,7 +20,7 @@ abstract class TenantCouldNotBeIdentifiedException extends Exception implements /** Set the message. */ protected function tenantCouldNotBeIdentified(string $how): static { - $this->message = "Tenant could not be identified " . $how; + $this->message = 'Tenant could not be identified ' . $how; return $this; }