mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 19:34:04 +00:00
Fix asset tests
This commit is contained in:
parent
bd08979e0c
commit
75f00a58dd
5 changed files with 10 additions and 12 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -46,9 +46,6 @@ class TenancyServiceProvider extends ServiceProvider
|
|||
|
||||
return $this;
|
||||
});
|
||||
$this->app['url']->macro('getForcedRoot', function () {
|
||||
return $this->forcedRoot;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -30,12 +30,11 @@ if (! \function_exists('tenant')) {
|
|||
if (! \function_exists('tenant_asset')) {
|
||||
function tenant_asset($asset)
|
||||
{
|
||||
return route('stancl.tenancy.asset', ['asset' => $asset]);
|
||||
return route('stancl.tenancy.asset', ['path' => $asset]);
|
||||
}
|
||||
}
|
||||
|
||||
if (! \function_exists('global_asset')) {
|
||||
// todo test this
|
||||
function global_asset($asset)
|
||||
{
|
||||
return app('globalUrl')->asset($asset);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue