mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 22:24:03 +00:00
Fix code style (php-cs-fixer)
This commit is contained in:
parent
4c62fca980
commit
440bc19c3b
1 changed files with 2 additions and 3 deletions
|
|
@ -5,9 +5,8 @@ declare(strict_types=1);
|
||||||
namespace Stancl\Tenancy\Bootstrappers;
|
namespace Stancl\Tenancy\Bootstrappers;
|
||||||
|
|
||||||
use Illuminate\Config\Repository;
|
use Illuminate\Config\Repository;
|
||||||
use Stancl\Tenancy\Contracts\Tenant;
|
|
||||||
use Stancl\Tenancy\TenancyMailManager;
|
|
||||||
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
|
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
|
||||||
|
use Stancl\Tenancy\Contracts\Tenant;
|
||||||
|
|
||||||
class MailTenancyBootstrapper implements TenancyBootstrapper
|
class MailTenancyBootstrapper implements TenancyBootstrapper
|
||||||
{
|
{
|
||||||
|
|
@ -35,7 +34,7 @@ class MailTenancyBootstrapper implements TenancyBootstrapper
|
||||||
|
|
||||||
public function __construct(protected Repository $config)
|
public function __construct(protected Repository $config)
|
||||||
{
|
{
|
||||||
$mapPreset = match($config->get('mail.default')) {
|
$mapPreset = match ($config->get('mail.default')) {
|
||||||
'smtp' => static::smtpCredentialsMap(),
|
'smtp' => static::smtpCredentialsMap(),
|
||||||
default => null,
|
default => null,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue