Exakat\Analyzer\Analyzer::rawQuery PHP Method

rawQuery() public method

public rawQuery ( )
    public function rawQuery()
    {
        // @doc This is when the object is a placeholder for others.
        if (count($this->methods) <= 1) {
            return true;
        }
        $query = implode('.', $this->methods);
        $query = 'g.V().' . $query . '
// Query (#' . (count($this->queries) + 1) . ') for ' . $this->analyzerQuoted . '
// php ' . $this->config->executable . " analyze -p " . $this->config->project . ' -P ' . $this->analyzerQuoted . " -v\n";
        $arguments = $this->arguments;
        $this->initNewQuery();
        return $this->query($query, $arguments);
    }
Analyzer