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

buildAstYieldStatement() public method

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