Completed
Push — master ( 555df9...68d1eb )
by Oleg
03:17
created
lib/WebMarketingROI/OptimizelyPHP/Resource/v2/Variation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                 case 'status': $this->setStatus($value); break;
86 86
                 case 'description': $this->setDescription($value); break;
87 87
                 default:
88
-                    throw new Exception('Unknown option found in the Variation entity: ' . $name);
88
+                    throw new Exception('Unknown option found in the Variation entity: '.$name);
89 89
             }
90 90
         }
91 91
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         // Remove options with empty values
114 114
         $cleanedOptions = array();
115 115
         foreach ($options as $name=>$value) {
116
-            if ($value!==null)
116
+            if ($value !== null)
117 117
                 $cleanedOptions[$name] = $value;
118 118
         }
119 119
         
Please login to merge, or discard this patch.