mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 07:54:03 +00:00
15 lines
293 B
PHP
15 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts\Future;
|
|
|
|
use Illuminate\Database\Connection;
|
|
|
|
/**
|
|
* This interface *might* be part of the TenantDatabaseManager interface in 3.x.
|
|
*/
|
|
interface CanSetConnection
|
|
{
|
|
public function setConnection(Connection $connection);
|
|
}
|