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

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

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