Example #1
0
File: RAML.php Project: RETFU/RREST
 /**
  * {@inheritdoc}
  */
 public function getAuthTypes()
 {
     $authTypes = [];
     foreach ($this->method->getSecuritySchemes() as $sheme) {
         $authTypes[] = $sheme->getType();
     }
     return $authTypes;
 }