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

buildAstBreakStatement() public method

Builds a new break-statement node instance.
Since: 0.9.12
public buildAstBreakStatement ( string $image ) : PDepend\Source\AST\ASTBreakStatement
$image string The source code image for this node.
return PDepend\Source\AST\ASTBreakStatement
    public function buildAstBreakStatement($image)
    {
        return $this->buildAstNodeInstance('ASTBreakStatement', $image);
    }
PHPBuilder