getPaths()->get($route->getPath()); $methods = $route->getMethods() ?: Swagger::$METHODS; foreach ($methods as $method) { $method = strtolower($method); if (!in_array($method, Swagger::$METHODS)) { continue; } $operations[] = $path->getOperation($method); } return $operations; } }