mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 19:07:00 +01:00
12 lines
159 B
PHP
12 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
namespace Psalm\Node;
|
||
|
|
||
|
/**
|
||
|
* Describe a Node that is not part of the original AST and was created by Psalm for analysis
|
||
|
*/
|
||
|
interface VirtualNode
|
||
|
{
|
||
|
|
||
|
}
|