mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-13 09:37:21 +01:00
10 lines
210 B
PHP
10 lines
210 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @property Node_Variable $var Variable holding object
|
||
|
* @property string|Node_Expr $name Name
|
||
|
* @property array $args Arguments
|
||
|
*/
|
||
|
class Node_Expr_MethodCall extends Node_Expr
|
||
|
{
|
||
|
}
|