1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-14 06:04:03 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-08-26 19:35:44 +00:00
parent 55d0a9ab87
commit 06cc7bf686

View file

@ -20,7 +20,7 @@ abstract class TenantCouldNotBeIdentifiedException extends Exception implements
/** Set the message. */ /** Set the message. */
protected function tenantCouldNotBeIdentified(string $how): static protected function tenantCouldNotBeIdentified(string $how): static
{ {
$this->message = "Tenant could not be identified " . $how; $this->message = 'Tenant could not be identified ' . $how;
return $this; return $this;
} }