Completed
Push — master ( 4e5d36...c5b6e3 )
by Nathan
04:35
created
src/Generator.php 2 patches
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.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -126,7 +126,9 @@  discard block
 block discarded – undo
126 126
      */
127 127
     public function setSize($size)
128 128
     {
129
-        if (is_numeric($size) && $size > 0) $this->size = (int) $size;
129
+        if (is_numeric($size) && $size > 0) {
130
+            $this->size = (int) $size;
131
+        }
130 132
     }
131 133
 
132 134
     /**
@@ -234,8 +236,9 @@  discard block
 block discarded – undo
234 236
      */
235 237
     protected function getGenerator()
236 238
     {
237
-        if (is_null($this->QRGenerator))
238
-            $this->QRGenerator = new QrCode();
239
+        if (is_null($this->QRGenerator)) {
240
+                    $this->QRGenerator = new QrCode();
241
+        }
239 242
 
240 243
         return $this->QRGenerator;
241 244
     }
Please login to merge, or discard this patch.