Completed
Push — master ( 0490b3...a353d2 )
by Scott
21:29 queued 09:13
created
updates/1.0/create_category_discount_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('bedard_shop_category_discount', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_category_discount', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->integer('category_id')->unsigned()->nullable();
14 14
             $table->integer('discount_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
updates/1.0/create_category_product_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('bedard_shop_category_product', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_category_product', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->integer('category_id')->unsigned()->nullable();
14 14
             $table->integer('product_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
updates/1.0/create_inventory_option_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('bedard_shop_inventory_option', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_inventory_option', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->integer('inventory_id')->unsigned()->nullable();
14 14
             $table->integer('option_id')->unsigned()->index();
Please login to merge, or discard this patch.
updates/1.0/create_discount_product_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('bedard_shop_discount_product', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_discount_product', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->integer('discount_id')->unsigned()->nullable();
14 14
             $table->integer('product_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
models/Category.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 
154 154
     public static function getParentIds($children, \October\Rain\Database\Collection $categories = null)
155 155
     {
156
-        if (! is_array($children)) {
156
+        if (!is_array($children)) {
157 157
             $children = [$children];
158 158
         }
159 159
 
@@ -163,13 +163,13 @@  discard block
 block discarded – undo
163 163
 
164 164
         $parents = [];
165 165
         foreach ($children as $child) {
166
-            $category = $categories->filter(function ($model) use ($child) {
166
+            $category = $categories->filter(function($model) use ($child) {
167 167
                 return $model->id == $child;
168 168
             })->first();
169 169
 
170 170
             while ($category && $category->parent_id) {
171 171
                 $parents[] = $category->parent_id;
172
-                $category = $categories->filter(function ($model) use ($category) {
172
+                $category = $categories->filter(function($model) use ($category) {
173 173
                     return $model->id == $category->parent_id;
174 174
                 })->first();
175 175
             }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
      */
250 250
     public function setNullParentId()
251 251
     {
252
-        if (! $this->parent_id) {
252
+        if (!$this->parent_id) {
253 253
             $this->parent_id = null;
254 254
         }
255 255
     }
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
      */
272 272
     public function syncInheritedProductsAfterDelete()
273 273
     {
274
-        if (! $this->dontSyncAfterDelete) {
274
+        if (!$this->dontSyncAfterDelete) {
275 275
             Product::syncAllInheritedCategories();
276 276
         }
277 277
     }
Please login to merge, or discard this patch.
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.
classes/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         foreach ($keys as $key => $value) {
26 26
             $isFiltered = gettype($value) === 'array';
27 27
 
28
-            if (! $isFiltered) {
28
+            if (!$isFiltered) {
29 29
                 $key = $value;
30 30
             }
31 31
 
Please login to merge, or discard this patch.
controllers/Inventories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function validate()
19 19
     {
20 20
         $data = input('option');
21
-        if (! $data || ! is_array($data)) {
21
+        if (!$data || !is_array($data)) {
22 22
             return Response::make('Error', 422);
23 23
         }
24 24
 
Please login to merge, or discard this patch.
models/Product.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -131,12 +131,12 @@  discard block
 block discarded – undo
131 131
      */
132 132
     protected function deleteRelatedOptions($options)
133 133
     {
134
-        return array_filter($options, function ($option) {
134
+        return array_filter($options, function($option) {
135 135
             if ($option['id'] !== null && $option['is_deleted']) {
136 136
                 Option::find($option['id'])->delete();
137 137
             }
138 138
 
139
-            return ! $option['is_deleted'];
139
+            return !$option['is_deleted'];
140 140
         });
141 141
     }
142 142
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      * @param  string $sessionKey
241 241
      * @return void
242 242
      */
243
-    protected function saveRelatedOptionValues(Option &$option, array $values, $sessionKey)
243
+    protected function saveRelatedOptionValues(Option & $option, array $values, $sessionKey)
244 244
     {
245 245
         foreach ($values as $value) {
246 246
             $model = $value['id'] !== null
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      */
283 283
     public static function syncAllInheritedCategories()
284 284
     {
285
-        Queue::push(function ($job) {
285
+        Queue::push(function($job) {
286 286
             $data = [];
287 287
             $products = Product::with('categories')->get();
288 288
             $categoryTree = Category::getParentCategoryIds();
@@ -339,8 +339,8 @@  discard block
 block discarded – undo
339 339
 
340 340
     public function validateOptions()
341 341
     {
342
-        if (! is_array($this->optionsInventories) ||
343
-            ! is_array($this->optionsInventories['options'])) {
342
+        if (!is_array($this->optionsInventories) ||
343
+            !is_array($this->optionsInventories['options'])) {
344 344
             return;
345 345
         }
346 346
 
Please login to merge, or discard this patch.