Skip to content

Commit

Permalink
fix issue where config not passed to drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkeash committed Oct 31, 2017
1 parent 5c4dfa8 commit 69e1e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Manager.php
Expand Up @@ -17,7 +17,7 @@ public function passes(string $service, Request $request): bool
$instance = $this->validate($service);

if ($this->checkHeaders($instance->headers(), $request)) {
return $instance->verify($request, collect(config('shield.services.' . $service . 'options', [])));
return $instance->verify($request, collect(config('shield.services.' . $service . '.options', [])));
}

return false;
Expand Down

0 comments on commit 69e1e94

Please sign in to comment.