1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/lib/Node/Stmt/Case.php

9 lines
167 B
PHP

<?php
/**
* @property null|Node_Expr $cond Condition (null for default)
* @property array $stmts Statements
*/
class Node_Stmt_Case extends Node_Stmt
{
}