Passed
Push — main ( 25f4a8...799be8 )
by Sebastian
03:52
created
tests/unit/ConfigTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
             false,
178 178
             ['run-path' => '/usr/local/bin/captainhook', 'verbosity' => 'debug', 'custom' => ['foo' => 'bar']]
179 179
         );
180
-        $json   = $config->getJsonData();
180
+        $json = $config->getJsonData();
181 181
 
182 182
         $this->assertIsArray($json);
183 183
         $this->assertIsArray($json['config']);
Please login to merge, or discard this patch.
src/Hook/Message/Action/InjectIssueKeyFromBranch.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -149,9 +149,9 @@
 block discarded – undo
149 149
 
150 150
         // combine all the parts to create a new commit message
151 151
         $msgText = $msgData[self::TARGET_SUBJECT] . PHP_EOL
152
-                   . PHP_EOL
153
-                   . $msgData[self::TARGET_BODY] . PHP_EOL
154
-                   . $msg->getComments();
152
+                    . PHP_EOL
153
+                    . $msgData[self::TARGET_BODY] . PHP_EOL
154
+                    . $msg->getComments();
155 155
 
156 156
         return new CommitMessage($msgText, $msg->getCommentCharacter());
157 157
     }
Please login to merge, or discard this patch.