PDepend\Source\Language\PHP\PHPBuilder::buildAstForeachStatement PHP Method

buildAstForeachStatement() public method

Builds a new foreach-statement node.
Since: 0.9.8
public buildAstForeachStatement ( string $image ) : PDepend\Source\AST\ASTForeachStatement
$image string The source image of this statement.
return PDepend\Source\AST\ASTForeachStatement
    public function buildAstForeachStatement($image)
    {
        return $this->buildAstNodeInstance('ASTForeachStatement', $image);
    }
PHPBuilder