Interface LocatorInterface
Registries for Table objects should implement this interface.
Method Summary
- 
          get() publicGet a table instance from the registry. 
- 
          getConfig() publicReturns configuration for an alias or the full configuration array for all aliases. 
- 
          set() publicSet a table instance. 
- 
          setConfig() publicStores a list of options to be used when instantiating an object with a matching alias. 
Method Detail
get() ¶ public
get(string $alias, array $options = []): Cake\ORM\TableGet a table instance from the registry.
Parameters
- 
                string$alias
- The alias name you want to get. 
- 
                array$options optional
- The options you want to build the table with. 
Returns
Cake\ORM\TablegetConfig() ¶ public
getConfig(string|null $alias = null): arrayReturns configuration for an alias or the full configuration array for all aliases.
Parameters
- 
                string|null$alias optional
- Alias to get config for, null for complete config. 
Returns
arrayThe config data.
set() ¶ public
set(string $alias, Cake\ORM\Table $repository): Cake\ORM\TableSet a table instance.
Parameters
- 
                string$alias
- The alias to set. 
- 
                Cake\ORM\Table$repository
- The table to set. 
Returns
Cake\ORM\TablesetConfig() ¶ public
setConfig(string|array $alias, array|null $options = null): $thisStores a list of options to be used when instantiating an object with a matching alias.
Parameters
- 
                string|array$alias
- Name of the alias or array to completely overwrite current config. 
- 
                array|null$options optional
- list of options for the alias 
Returns
$thisThrows
RuntimeExceptionWhen you attempt to configure an existing table instance.
