php-parser/lib/Node/Stmt/FuncParam.php
nikic eeb63065be a) changes node structure (Stmt_, Expr_, ...) b) fixes parsing of x::$y[z]
Sorry for that one large commit. Won't happen again.
2011-05-27 18:42:36 +02:00

11 lines
257 B
PHP

<?php
/**
* @property null|string $type Typehint
* @property bool $byRef Whether is passed by reference
* @property string $name Name
* @property mixed $default Default value
*/
class Node_Stmt_FuncParam extends Node_Stmt
{
}