We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e60a1d commit 3897a65Copy full SHA for 3897a65
src/Mpociot/ApiDoc/Generators/AbstractGenerator.php
@@ -24,7 +24,7 @@ abstract class AbstractGenerator
24
*
25
* @return mixed
26
*/
27
- public function getDomain(Route $route)
+ public function getDomain($route)
28
{
29
return $route->domain();
30
}
@@ -34,7 +34,7 @@ public function getDomain(Route $route)
34
35
36
37
- public function getUri(Route $route)
+ public function getUri($route)
38
39
return $route->uri();
40
@@ -44,7 +44,7 @@ public function getUri(Route $route)
44
45
46
47
- public function getMethods(Route $route)
+ public function getMethods($route)
48
49
return array_diff($route->methods(), ['HEAD']);
50
0 commit comments