Sstalle\php7cc\NodeVisitor\Resolver::resolve PHP Method

resolve() public method

public resolve ( )
    public function resolve()
    {
        $level = $this->level;
        return array_values(array_filter($this->visitors, function (VisitorInterface $visitor) use($level) {
            return $visitor->getLevel() >= $level;
        }));
    }