69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
/**
|
||
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
||
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
||
|
*
|
||
|
* Licensed under The MIT License
|
||
|
* For full copyright and license information, please see the LICENSE.txt
|
||
|
* Redistributions of files must retain the above copyright notice.
|
||
|
*
|
||
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
||
|
* @link https://cakephp.org CakePHP(tm) Project
|
||
|
* @since 4.1.0
|
||
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
||
|
*/
|
||
|
namespace Cake\Datasource\Locator;
|
||
|
|
||
|
use Cake\Datasource\RepositoryInterface;
|
||
|
|
||
|
/**
|
||
|
* Registries for repository objects should implement this interface.
|
||
|
*/
|
||
|
interface LocatorInterface
|
||
|
{
|
||
|
/**
|
||
|
* Get a repository instance from the registry.
|
||
|
*
|
||
|
* @param string $alias The alias name you want to get.
|
||
|
* @param array<string, mixed> $options The options you want to build the table with.
|
||
|
* @return \Cake\Datasource\RepositoryInterface
|
||
|
* @throws \RuntimeException When trying to get alias for which instance
|
||
|
* has already been created with different options.
|
||
|
*/
|
||
|
public function get(string $alias, array $options = []);
|
||
|
|
||
|
/**
|
||
|
* Set a repository instance.
|
||
|
*
|
||
|
* @param string $alias The alias to set.
|
||
|
* @param \Cake\Datasource\RepositoryInterface $repository The repository to set.
|
||
|
* @return \Cake\Datasource\RepositoryInterface
|
||
|
*/
|
||
|
public function set(string $alias, RepositoryInterface $repository);
|
||
|
|
||
|
/**
|
||
|
* Check to see if an instance exists in the registry.
|
||
|
*
|
||
|
* @param string $alias The alias to check for.
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function exists(string $alias): bool;
|
||
|
|
||
|
/**
|
||
|
* Removes an repository instance from the registry.
|
||
|
*
|
||
|
* @param string $alias The alias to remove.
|
||
|
* @return void
|
||
|
*/
|
||
|
public function remove(string $alias): void;
|
||
|
|
||
|
/**
|
||
|
* Clears the registry of configuration and instances.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function clear(): void;
|
||
|
}
|