Upload files to 'includes'
This commit is contained in:
91
includes/ConnectionLocatorInterface.php
Normal file
91
includes/ConnectionLocatorInterface.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of Aura for PHP.
|
||||
*
|
||||
* @license https://opensource.org/licenses/MIT MIT
|
||||
*
|
||||
*/
|
||||
namespace Aura\Sql;
|
||||
|
||||
/**
|
||||
*
|
||||
* Locates PDO connections for default, read, and write databases.
|
||||
*
|
||||
* @package Aura.Sql
|
||||
*
|
||||
*/
|
||||
interface ConnectionLocatorInterface
|
||||
{
|
||||
/**
|
||||
*
|
||||
* Sets the default connection registry entry.
|
||||
*
|
||||
* @param callable $callable The registry entry.
|
||||
*
|
||||
* @return null
|
||||
*
|
||||
*/
|
||||
public function setDefault(callable $callable);
|
||||
|
||||
/**
|
||||
*
|
||||
* Returns the default connection object.
|
||||
*
|
||||
* @return ExtendedPdoInterface
|
||||
*
|
||||
*/
|
||||
public function getDefault();
|
||||
|
||||
/**
|
||||
*
|
||||
* Sets a read connection registry entry by name.
|
||||
*
|
||||
* @param string $name The name of the registry entry.
|
||||
*
|
||||
* @param callable $callable The registry entry.
|
||||
*
|
||||
* @return null
|
||||
*
|
||||
*/
|
||||
public function setRead($name, callable $callable);
|
||||
|
||||
/**
|
||||
*
|
||||
* Returns a read connection by name; if no name is given, picks a
|
||||
* random connection; if no read connections are present, returns the
|
||||
* default connection.
|
||||
*
|
||||
* @param string $name The read connection name to return.
|
||||
*
|
||||
* @return ExtendedPdoInterface
|
||||
*
|
||||
*/
|
||||
public function getRead($name = '');
|
||||
|
||||
/**
|
||||
*
|
||||
* Sets a write connection registry entry by name.
|
||||
*
|
||||
* @param string $name The name of the registry entry.
|
||||
*
|
||||
* @param callable $callable The registry entry.
|
||||
*
|
||||
* @return null
|
||||
*
|
||||
*/
|
||||
public function setWrite($name, callable $callable);
|
||||
|
||||
/**
|
||||
*
|
||||
* Returns a write connection by name; if no name is given, picks a
|
||||
* random connection; if no write connections are present, returns the
|
||||
* default connection.
|
||||
*
|
||||
* @param string $name The write connection name to return.
|
||||
*
|
||||
* @return ExtendedPdoInterface
|
||||
*
|
||||
*/
|
||||
public function getWrite($name = '');
|
||||
}
|
Reference in New Issue
Block a user