/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/ORM/Locator
NameSizeModeActions
LocatorAwareTrait.php29050644editdlrm
LocatorInterface.php23690644editdlrm
TableLocator.php116330644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/ORM/Locator/LocatorInterface.php (2369B)
|string $alias Name of the alias or array to completely * overwrite current config. * @param array|null $options list of options for the alias * @return $this * @throws \RuntimeException When you attempt to configure an existing * table instance. */ public function setConfig($alias, $options = null); /** * Get a table instance from the registry. * * @param string $alias The alias name you want to get. * @param array $options The options you want to build the table with. * @return \Cake\ORM\Table */ public function get(string $alias, array $options = []): Table; /** * Set a table instance. * * @param string $alias The alias to set. * @param \Cake\ORM\Table $repository The table to set. * @return \Cake\ORM\Table * @psalm-suppress MoreSpecificImplementedParamType */ public function set(string $alias, RepositoryInterface $repository): Table; }