@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Conversation; |
6 | 6 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function register(): void |
39 | 39 | { |
40 | - $this->container->share(IntentManager::class, function () { |
|
40 | + $this->container->share(IntentManager::class, function() { |
|
41 | 41 | $manager = new IntentManager(); |
42 | 42 | |
43 | 43 | foreach ($this->intents() as $intent) { |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Conversation; |
6 | 6 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function register(): void |
25 | 25 | { |
26 | - $this->container->share(ContextManager::class, function () { |
|
26 | + $this->container->share(ContextManager::class, function() { |
|
27 | 27 | return new ContextManager( |
28 | 28 | $this->container, |
29 | 29 | $this->container->get(Cache::class) |