File "FindingVisitor.php"
Full path: /var/www/html/back/vendor/phpdocumentor/reflection/src/phpDocumentor/Reflection/NodeVisitor/FindingVisitor.php
File
size: 0.35 KB (360 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?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;
}
}