Completed
Push — master ( f5244f...96e614 )
by Vladimir
02:50
created
src/Templates/Keyboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Templates;
6 6
 
Please login to merge, or discard this patch.
src/Application/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Application;
6 6
 
Please login to merge, or discard this patch.
src/Conversation/ContextServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Conversation;
6 6
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function register(): void
24 24
     {
25
-        $this->getContainer()->share(ContextManager::class, function () {
25
+        $this->getContainer()->share(ContextManager::class, function() {
26 26
             return new ContextManager(
27 27
                 $this->getContainer(),
28 28
                 $this->getContainer()->get(Cache::class)
Please login to merge, or discard this patch.
src/Drivers/DriverServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Drivers;
6 6
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function register(): void
32 32
     {
33
-        $this->getContainer()->share(DriverManager::class, function () {
33
+        $this->getContainer()->share(DriverManager::class, function() {
34 34
             $manager = new DriverManager($this->getContainer());
35 35
 
36 36
             // Here we will discover all drivers installed
Please login to merge, or discard this patch.
src/Drivers/DriverManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Drivers;
6 6
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $parameters = Arr::get($this->parameters, $channel->getDriver(), []);
85 85
 
86 86
         collect($parameters)
87
-            ->each(function (string $parameter) use ($channel) {
87
+            ->each(function(string $parameter) use ($channel) {
88 88
                 if ($channel->getParameter($parameter) === null) {
89 89
                     throw new InvalidConfiguration('Invalid `'.$channel->getName().'` channel configuration.');
90 90
                 }
Please login to merge, or discard this patch.
src/Application/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Application;
6 6
 
Please login to merge, or discard this patch.
src/Application/RouteServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Application;
6 6
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function register(): void
37 37
     {
38
-        $this->getContainer()->share('request', function () {
38
+        $this->getContainer()->share('request', function() {
39 39
             return ServerRequestFactory::fromGlobals(
40 40
                 $_SERVER,
41 41
                 $_GET,
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $this->getContainer()->share('response', Response::class);
48 48
         $this->getContainer()->share('emitter', SapiEmitter::class);
49 49
 
50
-        $this->getContainer()->share('router', function () {
50
+        $this->getContainer()->share('router', function() {
51 51
             $router = new RouteCollection($this->getContainer());
52 52
 
53 53
             $controller = new Controller($this->getContainer()->get(Kernel::class));
Please login to merge, or discard this patch.
src/Http/InteractsWithRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Http;
6 6
 
Please login to merge, or discard this patch.
src/Toolbelt/Commands/MakeIntent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.