Passed
Branch master (ac98ee)
by ANTHONIUS
03:32
created
Category
src/Plugins/PHPBrew/Tests/InstallerTest.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
 /*
6 6
  * This file is part of the dotfiles project.
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         $this->downloader->expects($this->once())
67 67
             ->method('run')
68 68
             ->with(Installer::DOWNLOAD_URL, $tempDir.'/temp/phpbrew')
69
-            ->will($this->returnCallback(function () use ($tempDir): void {
69
+            ->will($this->returnCallback(function() use ($tempDir): void {
70 70
                 touch($tempDir.'/temp/phpbrew');
71 71
             }))
72 72
         ;
Please login to merge, or discard this patch.
src/Plugins/PHPBrew/Tests/Command/InstallCommandTest.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.
src/Plugins/PHPBrew/Tests/PHPBrewPluginTest.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.
src/Plugins/PHPBrew/Tests/ConfigurationTest.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.
src/Plugins/PHPBrew/Configuration.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.
src/Plugins/PHPBrew/Installer.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
 /*
6 6
  * This file is part of the dotfiles project.
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
                 'init',
107 107
             );
108 108
             $process = new Process($cmd);
109
-            $process->run(function ($type, $buffer): void {
109
+            $process->run(function($type, $buffer): void {
110 110
                 //@codeCoverageIgnoreStart
111 111
                 if (Process::ERR === $type) {
112 112
                     $this->logger->error('phpbrew: '.$buffer);
Please login to merge, or discard this patch.
src/Plugins/BashIt/Listeners/InstallSubscriber.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.
src/Plugins/BashIt/BashItPlugin.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.
src/Plugins/BashIt/Configuration.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
 /*
6 6
  * This file is part of the dotfiles project.
Please login to merge, or discard this patch.