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

Merge branch 'saas' of github.com:stancl/tenancy into saas

This commit is contained in:
Samuel Štancl 2019-10-24 19:22:34 +02:00
commit 4196d918d6
2 changed files with 4 additions and 2 deletions

View file

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

View file

@ -217,7 +217,7 @@ class TenantManager
{ {
if (! method_exists($this->storage, 'findBy')) { if (! method_exists($this->storage, 'findBy')) {
throw new NotImplementedException(get_class($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.'
); );
} }