1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 12:24:04 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-10-24 16:59:38 +00:00 committed by StyleCI Bot
parent a80275c1ac
commit c0d73db385
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Exceptions;
use Exception;

View file

@ -217,7 +217,7 @@ class TenantManager
{
if (! method_exists($this->storage, 'findBy')) {
throw new NotImplementedException(get_class($this->storage), 'findBy',
"This method was added to storage drivers provided by the package in 2.2.0 and will be part of the StorageDriver contract in 3.0.0."
'This method was added to storage drivers provided by the package in 2.2.0 and will be part of the StorageDriver contract in 3.0.0.'
);
}