mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 22:14:03 +00:00
Merge branch 'master' of github.com:stancl/tenancy
This commit is contained in:
commit
af5b7e8558
2 changed files with 6 additions and 4 deletions
|
|
@ -1,10 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace Stancl\Tenancy\Contracts;
|
namespace Stancl\Tenancy\Contracts;
|
||||||
|
|
||||||
abstract class TenantCannotBeCreatedException extends \Exception
|
abstract class TenantCannotBeCreatedException extends \Exception
|
||||||
{
|
{
|
||||||
abstract function reason(): string;
|
abstract public function reason(): string;
|
||||||
|
|
||||||
private $message;
|
private $message;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ namespace Stancl\Tenancy;
|
||||||
|
|
||||||
use Illuminate\Foundation\Application;
|
use Illuminate\Foundation\Application;
|
||||||
use Illuminate\Contracts\Console\Kernel as Artisan;
|
use Illuminate\Contracts\Console\Kernel as Artisan;
|
||||||
use Stancl\Tenancy\Contracts\TenantCannotBeCreatedException;
|
|
||||||
use Stancl\Tenancy\Exceptions\NoTenantIdentifiedException;
|
use Stancl\Tenancy\Exceptions\NoTenantIdentifiedException;
|
||||||
|
use Stancl\Tenancy\Contracts\TenantCannotBeCreatedException;
|
||||||
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
|
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue