Passed
Push — master ( aaffa4...1570ce )
by mazen
03:31 queued 01:59
created
src/Prettifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      */
73 73
     public function run($type = 'ArrayPrettifier')
74 74
     {
75
-        $type = 'MazenTouati\NoEmoji\Prettifiers\\'.$type;
75
+        $type = 'MazenTouati\NoEmoji\Prettifiers\\' . $type;
76 76
         $this->_content = $type::run($this->_file);
77 77
         return $this;
78 78
     }
Please login to merge, or discard this patch.
src/Prettifiers/ArrayPrettifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $pretty = '[' . PHP_EOL;
26 26
 
27 27
         foreach ($ranges as $range) {
28
-            $pretty .= "\t'". $range . "'," . PHP_EOL;
28
+            $pretty .= "\t'" . $range . "'," . PHP_EOL;
29 29
         }
30 30
 
31 31
         $pretty .= ']' . PHP_EOL;
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
 // Testing
31 31
 // ---
32
-$viewData['test']  = $handler->testPattern();
32
+$viewData['test'] = $handler->testPattern();
33 33
 
34 34
 // Prettifier
35 35
 // ---
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
   <ul>
103 103
     <?php
104 104
       foreach ($viewData as $kind => $result) {
105
-          echo '<li>'. craftResultString($kind, $result) .'</li>';
105
+          echo '<li>' . craftResultString($kind, $result) . '</li>';
106 106
       }
107 107
     ?>
108 108
   </ul>
Please login to merge, or discard this patch.