Registries for Table objects should implement this interface.
Clears the registry of configuration and instances.
Check to see if an instance exists in the registry.
Get a table instance from the registry.
Returns configuration for an alias or the full configuration array for all aliases.
Removes an repository instance from the registry.
Set a table instance.
Stores a list of options to be used when instantiating an object with a matching alias.
clear(): void
Clears the registry of configuration and instances.
voidexists(string $alias): bool
Check to see if an instance exists in the registry.
string $alias The alias to check for.
boolget(string $alias, array<string, mixed> $options = []): Cake\ORM\Table
Get a table instance from the registry.
string $alias The alias name you want to get.
array<string, mixed> $options optional The options you want to build the table with.
Cake\ORM\TablegetConfig(string|null $alias = null): array
Returns configuration for an alias or the full configuration array for all aliases.
string|null $alias optional Alias to get config for, null for complete config.
arrayremove(string $alias): void
Removes an repository instance from the registry.
string $alias The alias to remove.
voidset(string $alias, Cake\Datasource\RepositoryInterface $repository): Cake\ORM\Table
Set a table instance.
string $alias The alias to set.
Cake\Datasource\RepositoryInterface $repository The table to set.
Cake\ORM\TablesetConfig(array<string, mixed>|string $alias, array<string, mixed>|null $options = null): $this
Stores a list of options to be used when instantiating an object with a matching alias.
array<string, mixed>|string $alias Name of the alias or array to completely overwrite current config.
array<string, mixed>|null $options optional list of options for the alias
$thisRuntimeException
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.4/interface-Cake.ORM.Locator.LocatorInterface.html