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 f9dcdc7 commit e4800b8Copy full SHA for e4800b8
README.md
@@ -82,12 +82,11 @@ $authenticate = function (HttpKernelInterface $app, $anonymous) {
82
// * MUST return a response
83
};
84
85
-return (new Firewall($app, [
86
- 'challenge' => $challenge,
87
- 'authenticate' => $authenticate,
88
- 'firewall' => $firewall,
89
- ]))
90
- ->handle($request, $type, $catch);
+$app = new Firewall($app, [
+ 'challenge' => $challenge,
+ 'authenticate' => $authenticate,
+ 'firewall' => $firewall,
+]);
91
```
92
93
0 commit comments