/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/ORM/Locator
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/ORM/Locator/LocatorAwareTrait.php (1707B)
_tableLocator = $tableLocator;
return $this;
}
/**
* Gets the table locator.
*
* @return \Cake\ORM\Locator\LocatorInterface
*/
public function getTableLocator(): LocatorInterface
{
if ($this->_tableLocator === null) {
/** @var \Cake\ORM\Locator\LocatorInterface $this->_tableLocator */
$this->_tableLocator = FactoryLocator::get('Table');
}
/** @var \Cake\ORM\Locator\LocatorInterface */
return $this->_tableLocator;
}
}