Completed
Push — master ( 3dd24a...ed8bb7 )
by Nicolaas
02:45
created
code/model/buyables/CountryPrice_BuyableExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
             return null;
224 224
         }
225 225
         $key = $this->owner->ClassName."___".$this->owner->ID.'____'.$countryCode;
226
-        if (! isset(self::$_buyable_price[$key])) {
226
+        if (!isset(self::$_buyable_price[$key])) {
227 227
             //basics
228 228
             $currency = null;
229 229
             $currencyCode = null;
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
                 }
312 312
             }
313 313
             //order must have a country and a currency
314
-            if (! $currencyCode ||  ! $countryCode) {
314
+            if (!$currencyCode || !$countryCode) {
315 315
                 if ($this->debug) {
316 316
                     debug::log('No currency ('.$currencyCode.') or no country code ('.$countryCode.') for order: ');
317 317
                 }
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
      */
409 409
     public function canEdit($member = null)
410 410
     {
411
-        if (! $member) {
411
+        if (!$member) {
412 412
             $member = Member::currentUser();
413 413
         }
414 414
         if ($member) {
Please login to merge, or discard this patch.