mirror of
https://github.com/archtechx/tenancy.git
synced 2026-06-21 07:24:05 +00:00
13 lines
220 B
PHP
13 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Database\Concerns;
|
|
|
|
trait CentralConnection
|
|
{
|
|
public function getConnectionName()
|
|
{
|
|
return config('tenancy.database.central_connection');
|
|
}
|
|
}
|