for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Théo FIDRY <[email protected]>,
* Pádraic Brady <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Humbug\PhpScoper\NodeVisitor;
use PhpParser\Node;
use PhpParser\Node\Name\FullyQualified;
use PhpParser\Node\Stmt\UseUse;
use PhpParser\NodeVisitorAbstract;
final class IgnoreNamespaceScoperNodeVisitor extends NodeVisitorAbstract
{
/**
* @var array Class names to ignore when scoping
private $reserved = ['toberemoved'];
* @param Node $node
public function enterNode(Node $node)
* @todo UseUse should not be skipped if part of FullyQualified sub-section
if ($node instanceof UseUse && in_array((string) $node->name, $this->reserved)) {
$node->setAttribute('phpscoper_ignore', true);
}
if ($node instanceof FullyQualified && in_array((string) $node, $this->reserved)) {