mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-14 04:14:05 +00:00
Apply fixes from StyleCI
This commit is contained in:
parent
ff71197341
commit
63ebbe1b44
2 changed files with 6 additions and 4 deletions
|
|
@ -1,10 +1,12 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Stancl\Tenancy\Contracts;
|
||||
|
||||
abstract class TenantCannotBeCreatedException extends \Exception
|
||||
{
|
||||
abstract function reason(): string;
|
||||
abstract public function reason(): string;
|
||||
|
||||
private $message;
|
||||
|
||||
|
|
@ -12,4 +14,4 @@ abstract class TenantCannotBeCreatedException extends \Exception
|
|||
{
|
||||
$this->message = 'Tenant cannot be craeted. Reason: ' . $this->reason();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue