Pheasant\Query\Query::__call PHP Method

__call() public method

Kicker methods trigger execution
public __call ( $method, $params )
    public function __call($method, $params)
    {
        if (!in_array($method, array('row', 'scalar', 'column'))) {
            throw new \BadMethodCallException("{$method} not implemented on Query or ResultSet");
        }
        return call_user_func_array(array($this->execute(), $method), $params);
    }