Skip to content

Commit 3897a65

Browse files
committed
Remove typehints so Dingo can pass
1 parent 0e60a1d commit 3897a65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Mpociot/ApiDoc/Generators/AbstractGenerator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ abstract class AbstractGenerator
2424
*
2525
* @return mixed
2626
*/
27-
public function getDomain(Route $route)
27+
public function getDomain($route)
2828
{
2929
return $route->domain();
3030
}
@@ -34,7 +34,7 @@ public function getDomain(Route $route)
3434
*
3535
* @return mixed
3636
*/
37-
public function getUri(Route $route)
37+
public function getUri($route)
3838
{
3939
return $route->uri();
4040
}
@@ -44,7 +44,7 @@ public function getUri(Route $route)
4444
*
4545
* @return mixed
4646
*/
47-
public function getMethods(Route $route)
47+
public function getMethods($route)
4848
{
4949
return array_diff($route->methods(), ['HEAD']);
5050
}

0 commit comments

Comments
 (0)