Completed
Branch master (721862)
by Scott
03:31
created
models/Discount.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     public function filterFields($fields)
157 157
     {
158 158
         $fields->amount_exact->hidden = $this->is_percentage;
159
-        $fields->amount_percentage->hidden = ! $this->is_percentage;
159
+        $fields->amount_percentage->hidden = !$this->is_percentage;
160 160
     }
161 161
 
162 162
     /**
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     {
169 169
         $productIds = $this->products()->lists('id');
170 170
         $categories = $this->categories()
171
-            ->with(['products' => function ($product) {
171
+            ->with(['products' => function($product) {
172 172
                 return $product->select('id');
173 173
             }])
174 174
             ->get(['id']);
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      */
190 190
     public function getAmountExactAttribute()
191 191
     {
192
-        return ! $this->is_percentage ? $this->amount : 0;
192
+        return !$this->is_percentage ? $this->amount : 0;
193 193
     }
194 194
 
195 195
     /**
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     public function savePrices()
211 211
     {
212 212
         $id = $this->id;
213
-        Queue::push(function ($job) use ($id) {
213
+        Queue::push(function($job) use ($id) {
214 214
             $discount = Discount::findOrFail($id);
215 215
             $productIds = $discount->getAllProductIds();
216 216
             $products = Product::whereIn('id', $productIds)->select('id', 'base_price')->get();
@@ -261,10 +261,10 @@  discard block
 block discarded – undo
261 261
     public static function syncProductPrice(Product $product, array $categoryIds)
262 262
     {
263 263
         $discounts = self::isNotExpired()
264
-            ->whereHas('products', function ($query) use ($product) {
264
+            ->whereHas('products', function($query) use ($product) {
265 265
                 return $query->where('id', $product->id);
266 266
             })
267
-            ->orWhereHas('categories', function ($query) use ($categoryIds) {
267
+            ->orWhereHas('categories', function($query) use ($categoryIds) {
268 268
                 return $query->whereIn('id', $categoryIds);
269 269
             })
270 270
             ->get();
Please login to merge, or discard this patch.