| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | private function registerIntentManager(): void |
||
| 31 | { |
||
| 32 | $this->app->singleton(IntentManager::class, function () { |
||
| 33 | return tap(new IntentManager, function (IntentManager $manager) { |
||
| 34 | $intents = config('fondbot.conversation.intents'); |
||
| 35 | $fallbackIntent = config('fondbot.conversation.fallback_intent', FallbackIntent::class); |
||
| 36 | |||
| 37 | $manager->register($intents, $fallbackIntent); |
||
| 38 | }); |
||
| 39 | }); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |