mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-12 00:59:49 +01:00
12 lines
444 B
PHP
12 lines
444 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @property PHPParser_Node_Expr $expr Expression to iterate
|
||
|
* @property null|PHPParser_Node_Variable $keyVar Variable to assign key to
|
||
|
* @property bool $byRef Whether to assign value by reference
|
||
|
* @property PHPParser_Node_Variable $valueVar Variable to assign value to
|
||
|
* @property array $stmts Statements
|
||
|
*/
|
||
|
class PHPParser_Node_Stmt_Foreach extends PHPParser_Node_Stmt
|
||
|
{
|
||
|
}
|