mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 14:34:04 +00:00
Apply fixes from StyleCI
This commit is contained in:
parent
15e45fa551
commit
df19eb1821
3 changed files with 4 additions and 3 deletions
|
|
@ -83,7 +83,7 @@ class DatabaseManager
|
|||
*/
|
||||
public function createTenantConnection(Tenant $tenant)
|
||||
{
|
||||
$this->app['config']["database.connections.tenant"] = $tenant->database()->connection();
|
||||
$this->app['config']['database.connections.tenant'] = $tenant->database()->connection();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ declare(strict_types=1);
|
|||
|
||||
namespace Stancl\Tenancy\Tests;
|
||||
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
use Illuminate\Support\Str;
|
||||
use Stancl\Tenancy\Tenant;
|
||||
use Stancl\Tenancy\Tests\Etc\User;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Stancl\Tenancy\Tests\Etc;
|
||||
|
||||
class User extends \Illuminate\Database\Eloquent\Model
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue