CS fixes
[phorkie.git] / src / phorkie / Repository / Commit.php
index 62f1d408cb8f09373d2b3709479af07881f510c2..1ac8cc5cce40788a526446f40578ecf9b51112cd 100644 (file)
@@ -44,7 +44,9 @@ class Repository_Commit
             $r = intval($r / $quot);
             $g = intval($g / $quot);
         }
-        $string = str_repeat('g', $g) . str_repeat('r', $r) . str_repeat('n', 7 - $g - $r);
+        $string = str_repeat('g', $g)
+            . str_repeat('r', $r)
+            . str_repeat('n', 7 - $g - $r);
 
         return str_split($string);
     }