1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-05 20:48:28 +01:00
PHP-Parser/lib/Node/Stmt/For.php

11 lines
218 B
PHP
Raw Normal View History

<?php
/**
* @property array $init Init expression
* @property array $cond Loop condition
* @property array $loop Loop expression
* @property array $stmts Statements
*/
class Node_Stmt_For extends Node_Stmt
{
}