Completed
Push — master ( 4e5d36...c5b6e3 )
by Nathan
04:35
created
src/Generator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     public function setContent($content)
108 108
     {
109
-        $this->content = str_replace('+', ' ', $content);;
109
+        $this->content = str_replace('+', ' ', $content); ;
110 110
     }
111 111
 
112 112
     /**
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             return array('r' => 255, 'g' => 255, 'b' => 255, 'a' => 255);
185 185
         }
186 186
 
187
-        if (! preg_match("/^([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$/", $color)) {
187
+        if (!preg_match("/^([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$/", $color)) {
188 188
             $color = $default;
189 189
         }
190 190
 
Please login to merge, or discard this patch.