Test Failed
Pull Request — main (#234)
by
unknown
15:03
created
src/Runner/Action/Cli/Command/Placeholder/ChangedFiles.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -42,14 +42,14 @@
 block discarded – undo
42 42
         foreach (Git\Range\Detector::getRanges($this->io, $this->repository) as $range) {
43 43
             $filesInDiff  = isset($options['of-type'])
44 44
                           ? $this->repository->getDiffOperator()->getChangedFilesOfType(
45
-                              $range->from()->id(),
46
-                              $range->to()->id(),
47
-                              $options['of-type']
48
-                          )
45
+                                $range->from()->id(),
46
+                                $range->to()->id(),
47
+                                $options['of-type']
48
+                            )
49 49
                           : $this->repository->getDiffOperator()->getChangedFiles(
50
-                              $range->from()->id(),
51
-                              $range->to()->id()
52
-                          );
50
+                                $range->from()->id(),
51
+                                $range->to()->id()
52
+                            );
53 53
 
54 54
             $files = array_merge($files, $filesInDiff);
55 55
         }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         $files = [];
42 42
         foreach (Git\Range\Detector::getRanges($this->io, $this->repository) as $range) {
43
-            $filesInDiff  = isset($options['of-type'])
43
+            $filesInDiff = isset($options['of-type'])
44 44
                           ? $this->repository->getDiffOperator()->getChangedFilesOfType(
45 45
                               $range->from()->id(),
46 46
                               $range->to()->id(),
Please login to merge, or discard this patch.
src/Hook/Input/PrePush.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     {
86 86
         if (!isset($this->hashOfBranchOrigin)) {
87 87
             $currentBranch = $this->repository->getInfoOperator()
88
-                                              ->getCurrentBranch();
88
+                                                ->getCurrentBranch();
89 89
 
90 90
             $processor = new Processor();
91 91
             $reflog = $processor->run(sprintf('git reflog show --no-abbrev %s', $currentBranch))
Please login to merge, or discard this patch.