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

buildAstScalarType() public method

Builds a new primitive type node.
Since: 0.9.6
public buildAstScalarType ( string $image ) : PDepend\Source\AST\ASTScalarType
$image string The source image for the primitive type.
return PDepend\Source\AST\ASTScalarType
    public function buildAstScalarType($image)
    {
        return $this->buildAstNodeInstance('ASTScalarType', $image);
    }
PHPBuilder