@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Toolbelt\Commands; |
6 | 6 |
@@ -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\Channels; |
6 | 6 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function register(): void |
32 | 32 | { |
33 | - $this->container->share(ChannelManager::class, function () { |
|
33 | + $this->container->share(ChannelManager::class, function() { |
|
34 | 34 | $manager = new ChannelManager; |
35 | 35 | |
36 | 36 | foreach ($this->channels() as $name => $parameters) { |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace FondBot\Queue; |
6 | 6 |
@@ -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 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function boot(): void |
42 | 42 | { |
43 | - $this->container->share(LoggerInterface::class, function () { |
|
43 | + $this->container->share(LoggerInterface::class, function() { |
|
44 | 44 | $logger = new Logger('FondBot'); |
45 | 45 | |
46 | 46 | foreach ($this->handlers() as $handler) { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | if (PHP_SAPI !== 'cli') { |
54 | 54 | $whoops = new Run; |
55 | 55 | $whoops->pushHandler(new PrettyPageHandler); |
56 | - $whoops->pushHandler(function (Throwable $exception) { |
|
56 | + $whoops->pushHandler(function(Throwable $exception) { |
|
57 | 57 | /** @var LoggerInterface $logger */ |
58 | 58 | $logger = $this->container->get(LoggerInterface::class); |
59 | 59 |
@@ -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\Drivers; |
6 | 6 | |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function register(): void |
34 | 34 | { |
35 | - $this->container->share(DriverManager::class, function () { |
|
35 | + $this->container->share(DriverManager::class, function() { |
|
36 | 36 | $manager = new DriverManager($this->container); |
37 | 37 | |
38 | 38 | // Here we will discover all drivers installed |
@@ -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\Application; |
6 | 6 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * |
65 | 65 | * @return Session|null |
66 | 66 | */ |
67 | - public function getSession(): ?Session |
|
67 | + public function getSession(): ? Session |
|
68 | 68 | { |
69 | 69 | return $this->session; |
70 | 70 | } |
@@ -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 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return Intent|Conversable|null |
73 | 73 | */ |
74 | - public function getIntent(): ?Intent |
|
74 | + public function getIntent(): ? Intent |
|
75 | 75 | { |
76 | 76 | return $this->intent; |
77 | 77 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * |
92 | 92 | * @return Interaction|Conversable|null |
93 | 93 | */ |
94 | - public function getInteraction(): ?Interaction |
|
94 | + public function getInteraction(): ? Interaction |
|
95 | 95 | { |
96 | 96 | return $this->interaction; |
97 | 97 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @param Interaction|null $interaction |
103 | 103 | */ |
104 | - public function setInteraction(?Interaction $interaction): void |
|
104 | + public function setInteraction(? Interaction $interaction) : void |
|
105 | 105 | { |
106 | 106 | $this->interaction = $interaction; |
107 | 107 | } |
@@ -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(SessionManager::class, function () { |
|
26 | + $this->container->share(SessionManager::class, function() { |
|
27 | 27 | return new SessionManager( |
28 | 28 | $this->container, |
29 | 29 | $this->container->get(Cache::class) |