mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 10:57:08 +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
|
|
{
|
|
|
|
}
|