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

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-09-07 17:46:57 +00:00 committed by StyleCI Bot
parent 6b716e5345
commit d9f4ba133a
2 changed files with 7 additions and 2 deletions

View file

@ -1,8 +1,10 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Exceptions;
class NoTenantIdentifiedExceptions extends Exception
class NoTenantIdentifiedException extends Exception
{
protected $message = 'No tenant has been identified yet.';
}
}