mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 02:28:44 +02:00
N°2154 - Security breach
This commit is contained in:
14
lib/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
Normal file
14
lib/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace PhpParser;
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
class NodeVisitorAbstract implements NodeVisitor
|
||||
{
|
||||
public function beforeTraverse(array $nodes) { }
|
||||
public function enterNode(Node $node) { }
|
||||
public function leaveNode(Node $node) { }
|
||||
public function afterTraverse(array $nodes) { }
|
||||
}
|
||||
Reference in New Issue
Block a user