Completed
Push — master ( 7e5dfc...eef8f6 )
by Vladimir
02:29
created
src/Drivers/Type.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
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public static function createFromTemplate($templates)
22 22
     {
23
-        $callback = function (Template $template) {
23
+        $callback = function(Template $template) {
24 24
             $to = static::class;
25 25
 
26 26
             return $to::create($template);
Please login to merge, or discard this patch.
src/Channels/Exceptions/DriverException.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\Channels\Exceptions;
6 6
 
Please login to merge, or discard this patch.
src/Conversation/Activator.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\Conversation;
6 6
 
Please login to merge, or discard this patch.
src/Toolbelt/ListDrivers.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\Toolbelt;
6 6
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             $availableDrivers = $api->getDrivers();
22 22
 
23 23
             $rows = collect($availableDrivers)
24
-                ->transform(function ($item) use ($installedDrivers) {
24
+                ->transform(function($item) use ($installedDrivers) {
25 25
                     return [
26 26
                         $item['name'],
27 27
                         $item['package'],
Please login to merge, or discard this patch.
src/Conversation/ActivatorParser.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\Conversation;
6 6
 
Please login to merge, or discard this patch.