Drivers\Abstraction\Sql::from PHP Method

from() public method

..FROM ... " statement.
public from ( ) : object
return object
    public function from()
    {
        $tables = func_get_args();
        if (is_array($tables[0])) {
            $tables = $tables[0];
        }
        $this->tables = $tables;
        return $this;
    }