Passed
Push — master ( 665b08...6b0f3f )
by Michael
03:42
created
src/ChangeInspectors/GitChangeInspector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
         $change = new Change();
60 60
         foreach ($gitLog as $line) {
61
-            if(strpos($line, 'commit') === 0) {
61
+            if (strpos($line, 'commit') === 0) {
62 62
                 if (null !== $change->reference) {
63 63
                     $change->fullDescription = trim($change->fullDescription);
64 64
                     $changes[] = $change;
Please login to merge, or discard this patch.
src/Clients/CodebaseClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         else {
45 45
             $tickets = simplexml_load_string($this->curl->response);
46 46
             $completed_ticket_names = [];
47
-            foreach($tickets as $ticket) {
47
+            foreach ($tickets as $ticket) {
48 48
                 $completed_ticket_names[] = (string) $ticket->summary;
49 49
             }
50 50
 
Please login to merge, or discard this patch.