@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * @param string $channelName |
| 26 | 26 | * @param RequestInterface $request |
| 27 | 27 | * |
| 28 | - * @return mixed |
|
| 28 | + * @return string |
|
| 29 | 29 | */ |
| 30 | 30 | public function handle(string $channelName, RequestInterface $request) |
| 31 | 31 | { |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | /** |
| 81 | 81 | * Start conversation. |
| 82 | 82 | * |
| 83 | - * @param Conversable|mixed $conversable |
|
| 83 | + * @param Conversable $conversable |
|
| 84 | 84 | */ |
| 85 | 85 | public function converse(Conversable $conversable): void |
| 86 | 86 | { |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | /** |
| 115 | 115 | * Restart intent or interaction. |
| 116 | 116 | * |
| 117 | - * @param Conversable|mixed $conversable |
|
| 117 | + * @param Conversable $conversable |
|
| 118 | 118 | */ |
| 119 | 119 | public function restart(Conversable $conversable): void |
| 120 | 120 | { |
@@ -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\Application; |
| 6 | 6 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | $this->container->share('response', Response::class); |
| 45 | 45 | $this->container->share('emitter', SapiEmitter::class); |
| 46 | 46 | |
| 47 | - $this->container->share('router', function () { |
|
| 47 | + $this->container->share('router', function() { |
|
| 48 | 48 | $router = new RouteCollection($this->container); |
| 49 | 49 | |
| 50 | 50 | $this->routes($router); |