Completed
Push — master ( ad0bc3...e00d22 )
by Scott
02: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/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.
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.
controllers/Options.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function createValue()
15 15
     {
16 16
         $data = input('value');
17
-        if (! $data || ! is_array($data)) {
17
+        if (!$data || !is_array($data)) {
18 18
             return Response::make('Error', 422);
19 19
         }
20 20
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     public function validate()
39 39
     {
40 40
         $data = input('option');
41
-        if (! $data || ! is_array($data)) {
41
+        if (!$data || !is_array($data)) {
42 42
             return Response::make('Error', 422);
43 43
         }
44 44
 
Please login to merge, or discard this patch.
models/Product.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -132,12 +132,12 @@  discard block
 block discarded – undo
132 132
      */
133 133
     protected function deleteRelatedInventories($inventories)
134 134
     {
135
-        return array_filter($inventories, function ($inventory) {
135
+        return array_filter($inventories, function($inventory) {
136 136
             if ($inventory['id'] !== null && $inventory['is_deleted']) {
137 137
                 Inventory::find($inventory['id'])->delete();
138 138
             }
139 139
 
140
-            return ! $inventory['is_deleted'];
140
+            return !$inventory['is_deleted'];
141 141
         });
142 142
     }
143 143
 
@@ -149,12 +149,12 @@  discard block
 block discarded – undo
149 149
      */
150 150
     protected function deleteRelatedOptions($options)
151 151
     {
152
-        return array_filter($options, function ($option) {
152
+        return array_filter($options, function($option) {
153 153
             if ($option['id'] !== null && $option['is_deleted']) {
154 154
                 Option::find($option['id'])->delete();
155 155
             }
156 156
 
157
-            return ! $option['is_deleted'];
157
+            return !$option['is_deleted'];
158 158
         });
159 159
     }
160 160
 
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      * @param  string $sessionKey
276 276
      * @return void
277 277
      */
278
-    protected function saveRelatedOptionValues(Option &$option, array $values, $sessionKey)
278
+    protected function saveRelatedOptionValues(Option & $option, array $values, $sessionKey)
279 279
     {
280 280
         foreach ($values as $value) {
281 281
             $model = $value['id'] !== null
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
      */
318 318
     public static function syncAllInheritedCategories()
319 319
     {
320
-        Queue::push(function ($job) {
320
+        Queue::push(function($job) {
321 321
             $data = [];
322 322
             $products = Product::with('categories')->get();
323 323
             $categoryTree = Category::getParentCategoryIds();
@@ -380,8 +380,8 @@  discard block
 block discarded – undo
380 380
      */
381 381
     protected function validateInventories()
382 382
     {
383
-        if (! is_array($this->optionsInventories) ||
384
-            ! is_array($this->optionsInventories['options'])) {
383
+        if (!is_array($this->optionsInventories) ||
384
+            !is_array($this->optionsInventories['options'])) {
385 385
             return;
386 386
         }
387 387
 
@@ -412,8 +412,8 @@  discard block
 block discarded – undo
412 412
      */
413 413
     protected function validateOptions()
414 414
     {
415
-        if (! is_array($this->optionsInventories) ||
416
-            ! is_array($this->optionsInventories['options'])) {
415
+        if (!is_array($this->optionsInventories) ||
416
+            !is_array($this->optionsInventories['options'])) {
417 417
             return;
418 418
         }
419 419
 
Please login to merge, or discard this patch.
classes/ApiMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function handle($request, Closure $next)
9 9
     {
10
-        if (! ApiSettings::isEnabled()) {
10
+        if (!ApiSettings::isEnabled()) {
11 11
             abort(403, 'Forbidden');
12 12
             return;
13 13
         }
Please login to merge, or discard this patch.