phprs\ezsql\rules\select\FromRule::from PHP Method

from() public method

from('table') => "FROM table"
public from ( string $table, $as = null ) : JoinRule
$table string
return JoinRule
    public function from($table, $as = null)
    {
        FromImpl::from($this->context, $table, $as);
        return new JoinRule($this->context);
    }
FromRule