Passed
Pull Request — master (#312)
by Jason
05:38
created
src/Admin/FoxyStripeAdmin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         // Retrieve validator, if one has been setup (e.g. via data extensions).
89 89
         if ($config->hasMethod('getCMSValidator')) {
90 90
             $validator = $config->getCMSValidator();
91
-        } else {
91
+        }else {
92 92
             $validator = null;
93 93
         }
94 94
 
@@ -101,13 +101,13 @@  discard block
 block discarded – undo
101 101
             $actions,
102 102
             $validator
103 103
         )->setHTMLID('Form_EditForm');
104
-        $form->setValidationResponseCallback(function (ValidationResult $errors) use ($negotiator, $form) {
104
+        $form->setValidationResponseCallback(function(ValidationResult $errors) use ($negotiator, $form) {
105 105
             $request = $this->getRequest();
106 106
             if ($request->isAjax() && $negotiator) {
107 107
                 $result = $form->forTemplate();
108 108
 
109 109
                 return $negotiator->respond($request, array(
110
-                    'CurrentForm' => function () use ($result) {
110
+                    'CurrentForm' => function() use ($result) {
111 111
                         return $result;
112 112
                     },
113 113
                 ));
Please login to merge, or discard this patch.
src/Model/FoxyStripeSetting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@
 block discarded – undo
300 300
                 FormAction::create('save_foxystripe_setting', _t('FoxyStripeSetting.SAVE', 'Save'))
301 301
                     ->addExtraClass('btn-primary font-icon-save')
302 302
             );
303
-        } else {
303
+        }else {
304 304
             $actions = FieldList::create();
305 305
         }
306 306
         $this->extend('updateCMSActions', $actions);
Please login to merge, or discard this patch.
src/Page/ProductPage.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         );
170 170
 
171 171
         // Cateogry Dropdown field w/ add new
172
-        $source = function () {
172
+        $source = function() {
173 173
             return ProductCategory::get()->map()->toArray();
174 174
         };
175 175
         $catField = DropdownField::create('CategoryID', _t('ProductPage.Category', 'FoxyCart Category'), $source())
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
             $product = self::get()->byID($this->ID);
304 304
             if (isset($product->ParentID)) {
305 305
                 $origParent = $product->ParentID;
306
-            } else {
306
+            }else {
307 307
                 $origParent = null;
308 308
             }
309 309
             $currentParent = $this->ParentID;
@@ -380,8 +380,7 @@  discard block
 block discarded – undo
380 380
         $optionName = ($optionName !== null) ? preg_replace('/\s/', '_', $optionName) : $optionName;
381 381
 
382 382
         return (FoxyStripeSetting::current_foxystripe_setting()->CartValidation)
383
-            ? \FoxyCart_Helper::fc_hash_value($productCode, $optionName, $optionValue, $method, $output, $urlEncode) :
384
-            $optionValue;
383
+            ? \FoxyCart_Helper::fc_hash_value($productCode, $optionName, $optionValue, $method, $output, $urlEncode) : $optionValue;
385 384
     }
386 385
 
387 386
     // get FoxyCart Store Name for JS call
Please login to merge, or discard this patch.