1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 02:07:59 +01:00
PHP-Parser/lib/Node/Stmt/While.php

9 lines
139 B
PHP

<?php
/**
* @property Node_Expr $cond Condition
* @property array $stmts Statements
*/
class Node_Stmt_While extends Node_Stmt
{
}