Passed
Push — main ( f70419...bd00ab )
by Sebastian
07:15 queued 02:19
created
src/Hook/Template/Docker.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -109,10 +109,10 @@
 block discarded – undo
109 109
             $options    = substr($command, $endExec);
110 110
 
111 111
             $command     = trim($executable)
112
-                         . $this->createInteractiveOptions($options)
113
-                         . $this->createTTYOptions($options)
114
-                         . $this->createEnvOptions($options, $hook)
115
-                         . ' ' . trim($options);
112
+                            . $this->createInteractiveOptions($options)
113
+                            . $this->createTTYOptions($options)
114
+                            . $this->createEnvOptions($options, $hook)
115
+                            . ' ' . trim($options);
116 116
         }
117 117
         return $command;
118 118
     }
Please login to merge, or discard this patch.
src/Hook/Message/Rule/UseImperativeMood.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         parent::__construct();
32 32
 
33 33
         $this->hint = 'A commit message subject should always complete the following sentence.'  . PHP_EOL .
34
-                      'This commit will [YOUR COMMIT MESSAGE].';
34
+                        'This commit will [YOUR COMMIT MESSAGE].';
35 35
 
36 36
         $this->setSubjectBlacklist(
37 37
             [
Please login to merge, or discard this patch.
src/Hook/File/Action/DoesNotContainRegex.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
     protected function errorDetails(string $file): string
123 123
     {
124 124
         return ' <comment>('
125
-               . $this->fileMatches[$file] . ' match'
126
-               . ($this->fileMatches[$file] > 1 ? 'es' : '')
127
-               . ')</comment>';
125
+                . $this->fileMatches[$file] . ' match'
126
+                . ($this->fileMatches[$file] > 1 ? 'es' : '')
127
+                . ')</comment>';
128 128
     }
129 129
 
130 130
     /**
@@ -136,10 +136,10 @@  discard block
 block discarded – undo
136 136
     protected function errorMessage(int $filesFailed): string
137 137
     {
138 138
         return 'Regex \'' . $this->regexName . '\' failed: '
139
-               . 'found ' . $this->totalMatches . ' match'
140
-               . ($this->totalMatches > 1 ? 'es' : '')
141
-               . ' in ' . $filesFailed . ' file'
142
-               . ($filesFailed > 1 ? 's' : '' );
139
+                . 'found ' . $this->totalMatches . ' match'
140
+                . ($this->totalMatches > 1 ? 'es' : '')
141
+                . ' in ' . $filesFailed . ' file'
142
+                . ($filesFailed > 1 ? 's' : '' );
143 143
     }
144 144
 
145 145
     /**
Please login to merge, or discard this patch.
tests/unit/Runner/Hook/PreCommitTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
 
79 79
         // every action has to get executed
80 80
         $actionConfigFail->expects($this->atLeastOnce())
81
-                         ->method('getAction')
82
-                         ->willReturn(CH_PATH_FILES . '/bin/failure');
81
+                            ->method('getAction')
82
+                            ->willReturn(CH_PATH_FILES . '/bin/failure');
83 83
 
84 84
         // so even if the first actions fails this action has to get executed
85 85
         $actionConfigSuccess->expects($this->atLeastOnce())
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
 
89 89
         $hookConfig->method('isEnabled')->willReturn(true);
90 90
         $hookConfig->expects($this->once())
91
-                   ->method('getActions')
92
-                   ->willReturn([$actionConfigFail, $actionConfigSuccess]);
91
+                    ->method('getActions')
92
+                    ->willReturn([$actionConfigFail, $actionConfigSuccess]);
93 93
 
94 94
         $config->expects($this->once())->method('getHookConfigToExecute')->willReturn($hookConfig);
95 95
         $config->method('isHookEnabled')->willReturn(true);
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 
126 126
         $hookConfig->method('isEnabled')->willReturn(true);
127 127
         $hookConfig->expects($this->once())
128
-                   ->method('getActions')
129
-                   ->willReturn([$actionConfigFail, $actionConfigSuccess]);
128
+                    ->method('getActions')
129
+                    ->willReturn([$actionConfigFail, $actionConfigSuccess]);
130 130
 
131 131
         $config->expects($this->once())->method('getHookConfigToExecute')->willReturn($hookConfig);
132 132
         $config->expects($this->atLeastOnce())->method('isHookEnabled')->willReturn(true);
Please login to merge, or discard this patch.
tests/unit/Hook/Condition/FileChanged/OfTypeTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
         $io = $this->createIOMock();
46 46
         $io->method('getArgument')->willReturn('hook:pre-push');
47 47
         $io->expects($this->atLeastOnce())
48
-           ->method('getStandardInput')
49
-           ->willReturn(
50
-               [
51
-                   'refs/heads/main 9dfa0fa6221d75f48b2dfac359127324bedf8409' .
52
-                   ' refs/heads/main 8309f6e16097754469c485e604900c573bf2c5d8'
53
-               ]
54
-           );
48
+            ->method('getStandardInput')
49
+            ->willReturn(
50
+                [
51
+                    'refs/heads/main 9dfa0fa6221d75f48b2dfac359127324bedf8409' .
52
+                    ' refs/heads/main 8309f6e16097754469c485e604900c573bf2c5d8'
53
+                ]
54
+            );
55 55
         $operator   = $this->createGitDiffOperator(['fiz.php', 'foo.txt']);
56 56
         $repository = $this->createRepositoryMock('');
57 57
         $repository->expects($this->once())->method('getDiffOperator')->willReturn($operator);
Please login to merge, or discard this patch.