Eva\EvaEngine\Mvc\Model::getSource PHP Метод

getSource() публичный Метод

Get db table full name
public getSource ( ) : string
Результат string
    public function getSource()
    {
        if (!$this->tableName) {
            $this->tableName = parent::getSource();
        }
        return $this->getPrefix() . $this->tableName;
    }