Completed
Push — master ( 0e666a...26e600 )
by Pieter
02:46
created
src/Cli/Client.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
     public function run(array $arguments = []): Result
19 19
     {
20 20
         $descriptorSpec = [
21
-           ['pipe', 'r'],
22
-           ['pipe', 'w'],
23
-           ['pipe', 'w'],
21
+            ['pipe', 'r'],
22
+            ['pipe', 'w'],
23
+            ['pipe', 'w'],
24 24
         ];
25 25
 
26 26
         $process = proc_open($this->buildCommand($arguments), $descriptorSpec, $pipes, $path);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/FileSystem/NotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Cli/PermissionDeniedException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Cli/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Cli/Output/Output.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Cli/Output/Result.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Cli/Input/LongFlag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.
src/Cli/Input/ShortFlag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gitilicious\GitClient\FileSystem;
4 4
 
Please login to merge, or discard this patch.