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 d188a93 commit 960c01bCopy full SHA for 960c01b
.docs/README.md
@@ -58,6 +58,29 @@ At this time it's suitable for smaller applications.
58
└── index.php
59
```
60
61
+**Bootstrap**
62
+
63
+```php
64
+<?php declare(strict_types = 1);
65
66
+namespace App;
67
68
+use Contributte\Bootstrap\ExtraConfigurator;
69
70
+final class Bootstrap
71
+{
72
73
+ public static function boot(): ExtraConfigurator
74
+ {
75
+ return Bootloader::create()
76
+ ->use(NellaPreset::create(__DIR__))
77
+ ->boot();
78
+ }
79
80
+}
81
82
+```
83
84
**Presenters**
85
86
The presenters in your app can extend `Contributte\Nella\UI\NellaPresenter`.
0 commit comments