1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-05 20:48:28 +01:00
PHP-Parser/lib/Node/Expr/MethodCall.php

10 lines
210 B
PHP
Raw Normal View History

<?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
{
}