Completed
Push — master ( 7e5dfc...eef8f6 )
by Vladimir
02:29
created
src/Toolbelt/InstallDriver.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
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         // Install driver
37 37
         $this->info('Installing driver...');
38 38
 
39
-        $result = $composer->install($driver['package'], function ($_, $line) use (&$output) {
39
+        $result = $composer->install($driver['package'], function($_, $line) use (&$output) {
40 40
             $output .= $line;
41 41
         });
42 42
 
Please login to merge, or discard this patch.
src/Framework/Console/Application.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\Framework\Console;
6 6
 
Please login to merge, or discard this patch.
src/Framework/Http/Kernel.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\Framework\Http;
6 6
 
Please login to merge, or discard this patch.
src/Framework/Application.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\Framework;
6 6
 
Please login to merge, or discard this patch.
src/Framework/Exceptions/Handler.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\Framework\Exceptions;
6 6
 
Please login to merge, or discard this patch.
src/Foundation/Providers/RouteServiceProvider.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\Foundation\Providers;
6 6
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         Route::get('/', 'FondBot\Foundation\Controller@index');
17 17
 
18
-        Route::group(['middleware' => 'fondbot.webhook'], function () {
18
+        Route::group(['middleware' => 'fondbot.webhook'], function() {
19 19
             Route::get('webhook/{channel}', 'FondBot\Foundation\Controller@webhook')->name('fondbot.webhook');
20 20
             Route::post('webhook/{channel}', 'FondBot\Foundation\Controller@webhook')->name('fondbot.webhook');
21 21
         });
Please login to merge, or discard this patch.
src/Framework/Console/Kernel.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\Framework\Console;
6 6
 
Please login to merge, or discard this patch.
src/Contracts/Channels/WebhookVerification.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\Contracts\Channels;
6 6
 
Please login to merge, or discard this patch.
src/Toolbelt/ListIntents.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
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function handle(Manager $manager): void
16 16
     {
17 17
         $rows = collect($manager->getIntents())
18
-            ->transform(function ($item) {
18
+            ->transform(function($item) {
19 19
                 return [$item];
20 20
             })
21 21
             ->toArray();
Please login to merge, or discard this patch.