Habari\Query::from PHP Method

from() public method

Sets the primary table for the FROM statement
public from ( string $primary_table ) : Query
$primary_table string The primary table from which to select
return Query Returns $this for fluid interface
    public function from($primary_table)
    {
        $this->primary_table = $primary_table;
        return $this;
    }