1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/lib/Node/Stmt/ClassMethod.php
2011-05-29 12:20:47 +02:00

12 lines
267 B
PHP

<?php
/**
* @property int $type Type
* @property bool $byRef Whether to return by reference
* @property string $name Name
* @property array $params Parameters
* @property array $stmts Statements
*/
class Node_Stmt_ClassMethod extends Node_Stmt
{
}