Skip to content

Commit

Permalink
Applied fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored and StyleCIBot committed Aug 9, 2016
1 parent 74dd9d5 commit ea32280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mpociot/ApiDoc/Generators/AbstractGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected function getRouteRules($route, $bindings)
if (! is_null($parameterType) && class_exists($parameterType->name)) {
$className = $parameterType->name;

if (is_subclass_of($className,FormRequest::class)) {
if (is_subclass_of($className, FormRequest::class)) {
$parameterReflection = new $className;
// Add route parameter bindings
$parameterReflection->query->add($bindings);
Expand Down

0 comments on commit ea32280

Please sign in to comment.