Prado\Data\ActiveRecord\Relations\TActiveRecordHasManyAssociation::getSourceTable PHP Method

getSourceTable() protected method

protected getSourceTable ( ) : TDbTableInfo
return TDbTableInfo source table information.
    protected function getSourceTable()
    {
        if ($this->_sourceTable === null) {
            $gateway = $this->getSourceRecord()->getRecordGateway();
            $this->_sourceTable = $gateway->getRecordTableInfo($this->getSourceRecord());
        }
        return $this->_sourceTable;
    }