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 aaa9ae2 commit 5a17f52Copy full SHA for 5a17f52
README.md
@@ -26,16 +26,13 @@ First of all, we need to install this package via composer:
26
composer require geeky/request-objects
27
```
28
29
-And register the bundle:
+And register the bundle in `config/bundels.php`:
30
31
32
- public function registerBundles()
33
- {
34
- $bundles = [
35
- // ...
36
- new \Fesor\RequestObject\Bundle\RequestObjectBundle(),
37
- ];
38
- }
+ return [
+ ....
+ Fesor\RequestObject\Bundle\RequestObjectBundle::class => ['all' => true],
+ ];
39
40
41
Bundle doesn't require any additional configuration, but you could also specify an error response
0 commit comments