1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/Node/Stmt/FuncParam.php
2011-05-29 12:20:47 +02:00

11 lines
297 B
PHP

<?php
/**
* @property null|string|Node_Name $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
{
}