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

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

Builds a new switch-label node.
С версии: 0.9.8
public buildAstSwitchLabel ( string $image ) : PDepend\Source\AST\ASTSwitchLabel
$image string The source image of this label.
Результат PDepend\Source\AST\ASTSwitchLabel
    public function buildAstSwitchLabel($image)
    {
        return $this->buildAstNodeInstance('ASTSwitchLabel', $image);
    }
PHPBuilder