Interface LocatorInterface
Registries for repository objects should implement this interface.
Namespace: Cake\Datasource\Locator
Method Summary
-
clear() public
Clears the registry of configuration and instances.
-
exists() public
Check to see if an instance exists in the registry.
-
get() public
Get a repository instance from the registry.
-
remove() public
Removes a repository instance from the registry.
-
set() public
Set a repository instance.
Method Detail
exists() ¶ public
exists(string $alias): bool
Check to see if an instance exists in the registry.
Parameters
-
string$alias The alias to check for.
Returns
boolget() ¶ public
get(string $alias, array<string, mixed> $options = []): TRepo
Get a repository instance from the registry.
Parameters
-
string$alias The alias name you want to get.
-
array<string, mixed>$options optional The options you want to build the table with.
Returns
TRepoThrows
RuntimeExceptionWhen trying to get alias for which instance has already been created with different options.
remove() ¶ public
remove(string $alias): void
Removes a repository instance from the registry.
Parameters
-
string$alias The alias to remove.
Returns
voidset() ¶ public
set(string $alias, TRepo $repository): TRepo
Set a repository instance.
Parameters
-
string$alias The alias to set.
-
TRepo$repository The repository to set.
Returns
TRepo