Ejemplo n.º 1
0
Archivo: RAML.php Proyecto: RETFU/RREST
 /**
  * {@inheritdoc}
  */
 public function getAuthTypes()
 {
     $authTypes = [];
     foreach ($this->method->getSecuritySchemes() as $sheme) {
         $authTypes[] = $sheme->getType();
     }
     return $authTypes;
 }