Completed
Push — master ( 1ce859...eb70f7 )
by Jefersson
28s
created
src/Formatter/FeatureDescription.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,13 +35,13 @@
 block discarded – undo
35 35
     {
36 36
         $shortDesc = $feature->getKeyword() . ': ' . $feature->getTitle() . "\n";
37 37
 
38
-        if (! $feature->hasDescription()) {
38
+        if (!$feature->hasDescription()) {
39 39
             return rtrim($shortDesc);
40 40
         }
41 41
 
42 42
         $longDesc = implode(
43 43
             array_map(
44
-                function ($descriptionLine) {
44
+                function($descriptionLine) {
45 45
                     return $this->indent() . trim($descriptionLine) . "\n";
46 46
                 },
47 47
                 explode("\n", $feature->getDescription())
Please login to merge, or discard this patch.