Interface LocatorInterface
Registries for Table objects should implement this interface.
Direct Implementers
Method Summary
-  clear() publicClears the registry of configuration and instances.
-  config() publicStores a list of options to be used when instantiating an object with a matching alias. 
-  exists() publicCheck to see if an instance exists in the registry.
-  get() publicGet a table instance from the registry.
-  remove() publicRemoves an instance from the registry.
-  set() publicSet an instance.
Method Detail
config()source public
config( string|null $alias null , array|null $options null )
Stores a list of options to be used when instantiating an object with a matching alias.
Parameters
-  string|null $aliasoptional null
- Name of the alias
-  array|null $optionsoptional null
- list of options for the alias
Returns
arrayThe config data.
exists()source public
exists( string $alias )
Check to see if an instance exists in the registry.
Parameters
-  string $alias
- The alias to check for.
Returns
booleanget()source public
get( string $alias , array $options [] )
Get a table instance from the registry.
Parameters
-  string $alias
- The alias name you want to get.
-  array $optionsoptional []
- The options you want to build the table with.
Returns
Cake\ORM\Tableremove()source public
remove( string $alias )
Removes an instance from the registry.
Parameters
-  string $alias
- The alias to remove.
set()source public
set( string $alias , Cake\ORM\Table $object )
Set an instance.
Parameters
-  string $alias
- The alias to set.
-  Cake\ORM\Table$object
- The table to set.
Returns
Cake\ORM\Table
    © 2005–2017 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/3.3/class-Cake.ORM.Locator.LocatorInterface.html