mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-11 17:09:41 +01:00
11 lines
257 B
PHP
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
|
||
|
{
|
||
|
}
|