1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-09 06:28:19 +01:00
PHP-Parser/lib/Node/Stmt/Func.php

11 lines
225 B
PHP
Raw Normal View History

<?php
/**
* @property bool $byRef Whether returns by reference
* @property string $name Name
* @property array $params Parameters
* @property array $stmts Statements
*/
class Node_Stmt_Func extends Node_Stmt
{
}