Exemplo n.º 1
0
 private function getParamName($p)
 {
     if (JwtUtil::startsWith($p, "/:")) {
         return $p;
     }
     if (JwtUtil::startsWith($p, ":")) {
         return '/' . $p;
     }
     return "/:" . $p;
 }