Skip to content

Commit

Permalink
Applied styleci changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddanbrown committed Nov 5, 2021
1 parent 06b5009 commit d0aa10a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/Api/ApiDocsGenerator.php
Expand Up @@ -95,6 +95,7 @@ protected function getBodyParamsFromClass(string $className, string $methodName)
}

$rules = $class->getValdationRules()[$methodName] ?? [];

return empty($rules) ? null : $rules;
}

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/ForgotPasswordController.php
Expand Up @@ -44,7 +44,7 @@ public function __construct()
public function sendResetLinkEmail(Request $request)
{
$this->validate($request, [
'email' => ['required', 'email']
'email' => ['required', 'email'],
]);

// We will send the password reset link to this user. Once we have attempted
Expand Down

0 comments on commit d0aa10a

Please sign in to comment.