_table instanceof Table) { return $this->_table; } $table = $tableName; if (!isset($table)) { $table = $this->_tableConfigKey && Configure::read($this->_tableConfigKey) ? Configure::read($this->_tableConfigKey) : $this->_defaultTable; } $this->_table = TableRegistry::getTableLocator()->get($table); return $this->_table; } /** * Set the users table * * @param Table $table table * @return void */ public function setTable(Table $table) { $this->_table = $table; } }