Passed
Push — master ( 3ac0d2...113531 )
by Patrick
03:35 queued 12s
created
src/ForecastAutomation/GitlabClient/Shared/Plugin/GitlabActivityPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $matchPattern = sprintf('(%s-[0-9]{1,})i', $_ENV['GITLAB_PATTERN']);
61 61
         $resultMatch = preg_match($matchPattern, $target_title, $match);
62 62
         if (0 === $resultMatch || !isset($match[0])) {
63
-            throw new \Exception('gitlab needle not found for target_title: '.$target_title);
63
+            throw new \Exception('gitlab needle not found for target_title: ' . $target_title);
64 64
         }
65 65
 
66 66
         return strtoupper($match[0]);
Please login to merge, or discard this patch.
MattermostClient/Shared/Plugin/MattermostActivityPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         $matchPattern = sprintf('(%s-[0-9]{1,})i', $_ENV['GITLAB_PATTERN']);
82 82
         $resultMatch = preg_match($matchPattern, $target_title, $match);
83 83
         if (0 === $resultMatch || !isset($match[0])) {
84
-            throw new \Exception('gitlab needle not found for target_title: '.$target_title);
84
+            throw new \Exception('gitlab needle not found for target_title: ' . $target_title);
85 85
         }
86 86
 
87 87
         return strtoupper($match[0]);
Please login to merge, or discard this patch.