PhpParser\PrettyPrinter\Standard::pUseType PHP Méthode

pUseType() private méthode

private pUseType ( $type )
    private function pUseType($type) {
        return $type === Stmt\Use_::TYPE_FUNCTION ? 'function '
            : ($type === Stmt\Use_::TYPE_CONSTANT ? 'const ' : '');
    }
Standard