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

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

Builds a new primitive type node.
С версии: 0.9.6
public buildAstScalarType ( string $image ) : PDepend\Source\AST\ASTScalarType
$image string The source image for the primitive type.
Результат PDepend\Source\AST\ASTScalarType
    public function buildAstScalarType($image)
    {
        return $this->buildAstNodeInstance('ASTScalarType', $image);
    }
PHPBuilder