1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 08:24:05 +00:00

Fix asset tests

This commit is contained in:
Samuel Štancl 2019-09-21 18:13:29 +02:00
parent bd08979e0c
commit 75f00a58dd
5 changed files with 10 additions and 12 deletions

View file

@ -11,11 +11,11 @@ use Stancl\Tenancy\Tenant;
class FilesystemTenancyBootstrapper implements TenancyBootstrapper
{
protected $originalPaths = [];
/** @var Application */
protected $app;
protected $originalPaths = [];
public function __construct(Application $app)
{
$this->app = $app;

View file

@ -11,8 +11,8 @@ use Stancl\Tenancy\Tenant;
class RedisTenancyBootstrapper implements TenancyBootstrapper
{
/** @var string[string] Original prefixes of connections */
protected $originalPrefixes = [];
/** @var array<string, string> Original prefixes of connections */
public $originalPrefixes = [];
/** @var Application */
protected $app;