PDepend\Source\Language\PHP\PHPBuilder::buildAstBreakStatement PHP Метод

buildAstBreakStatement() публичный Метод

Builds a new break-statement node instance.
С версии: 0.9.12
public buildAstBreakStatement ( string $image ) : PDepend\Source\AST\ASTBreakStatement
$image string The source code image for this node.
Результат PDepend\Source\AST\ASTBreakStatement
    public function buildAstBreakStatement($image)
    {
        return $this->buildAstNodeInstance('ASTBreakStatement', $image);
    }
PHPBuilder