Eva\EvaEngine\Mvc\Model::getSource PHP Method

getSource() public method

Get db table full name
public getSource ( ) : string
return string
    public function getSource()
    {
        if (!$this->tableName) {
            $this->tableName = parent::getSource();
        }
        return $this->getPrefix() . $this->tableName;
    }