File "FindingVisitor.php"

Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/src/phpDocumentor/Reflection/NodeVisitor/FindingVisitor.php
File size: 360 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace phpDocumentor\Reflection\NodeVisitor;

use PhpParser\NodeVisitor\FirstFindingVisitor as BaseFindingVisitor;

final class FindingVisitor extends BaseFindingVisitor
{
    public function __construct(callable $filterCallback)
    {
        parent::__construct($filterCallback);

        $this->foundNode = null;
    }
}