Passed
Push — master ( 3fc932...f1f98d )
by Matthijs
06:22
created
app/Http/Controllers/Backend/ProductCombinationController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -26,23 +26,23 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $product = ProductService::find($productId);
28 28
 
29
-        if($product) {
29
+        if ($product) {
30 30
             if ($request->wantsJson()) {
31 31
 
32 32
                 $query = ProductCombinationService::getModel()->where('product_id', '=', $productId);
33 33
 
34
-                $datatables = \DataTables::of($query)->addColumn('action', function ($query) use ($productId) {
34
+                $datatables = \DataTables::of($query)->addColumn('action', function($query) use ($productId) {
35 35
                     $deleteLink = \Form::deleteajax(url()->route('product-combination.destroy', array('productId' => $productId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
36 36
                     $links = '<a href="'.url()->route('product-combination.edit', array('productId' => $productId, 'id' => $query->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
37 37
                 
38 38
                     return $links;
39 39
                 })
40 40
 
41
-                ->addColumn('amount', function ($query) {
41
+                ->addColumn('amount', function($query) {
42 42
                     return '<input type="text" class="change-amount-product-attribute" value="'.$query->amount.'" data-url="/admin/product/'.$query->product_id.'/product-combination/change-amount-attribute/'.$query->id.'">';
43 43
                 })
44 44
 
45
-                ->addColumn('price', function ($query) {
45
+                ->addColumn('price', function($query) {
46 46
                     $result = 0;
47 47
                     if ($query->price) {
48 48
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                             'amount' => $query->amount
92 92
                             );
93 93
 
94
-                        $result =  '&euro; '.$output['orginal_price_ex_tax_number_format'].' / &euro; '.$output['orginal_price_inc_tax_number_format'];
94
+                        $result = '&euro; '.$output['orginal_price_ex_tax_number_format'].' / &euro; '.$output['orginal_price_inc_tax_number_format'];
95 95
 
96 96
 
97 97
                         if ($query->discount_value) {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                     return $result;
103 103
                 })
104 104
 
105
-                ->addColumn('combinations', function ($query) use ($productId) {
105
+                ->addColumn('combinations', function($query) use ($productId) {
106 106
                     $items = array();
107 107
                     foreach ($query->combinations as $row) {
108 108
                         $items[] = $row->attribute->attributeGroup->title.': '.$row->attribute->value;
@@ -147,8 +147,8 @@  discard block
 block discarded – undo
147 147
 
148 148
     public function store(Request $request, $productId)
149 149
     {
150
-        $result  = ProductCombinationService::create($request->all(), $productId);
151
-        if($result) {
150
+        $result = ProductCombinationService::create($request->all(), $productId);
151
+        if ($result) {
152 152
             return ProductCombinationService::notificationRedirect(array('product-combination.index', $productId), $result, 'The product extra fields are updated.');
153 153
         }
154 154
 
@@ -184,14 +184,14 @@  discard block
 block discarded – undo
184 184
     public function update(Request $request, $productId, $id)
185 185
     {
186 186
 
187
-        $result  = ProductCombinationService::updateById($request->all(), $productId, $id);
187
+        $result = ProductCombinationService::updateById($request->all(), $productId, $id);
188 188
         return ProductCombinationService::notificationRedirect(array('product-combination.index', $productId), $result, 'The product combinations are updated.');
189 189
 
190 190
     }
191 191
 
192 192
     public function destroy($productId, $id)
193 193
     {
194
-        $result  = ProductCombinationService::destroy($id);
194
+        $result = ProductCombinationService::destroy($id);
195 195
 
196 196
         if ($result) {
197 197
             Notification::success('The product combination is deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/HtmlBlockController.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@  discard block
 block discarded – undo
27 27
             
28 28
             $datatables = DataTables::of($query)
29 29
 
30
-            ->addColumn('active', function ($query) {
30
+            ->addColumn('active', function($query) {
31 31
                 if ($query->active) {
32 32
                     return '<a href="#" class="change-active" data-url="/admin/html-block/change-active/'.$query->id.'"><span class="glyphicon glyphicon-ok icon-green"></span></a>';
33 33
                 }
34 34
                 return '<a href="#" class="change-active" data-url="/admin/html-block/change-active/'.$query->id.'"><span class="glyphicon glyphicon-remove icon-red"></span></a>';
35 35
             })
36
-            ->addColumn('image', function ($query) {
36
+            ->addColumn('image', function($query) {
37 37
                 if ($query->image_file_name) {
38 38
                     return '<img src="'.config('hideyo.public_path').'/html_block/'.$query->id.'/'.$query->image_file_name.'" width="200px" />';
39 39
                 }
40 40
             })
41
-            ->addColumn('action', function ($query) {
41
+            ->addColumn('action', function($query) {
42 42
                 $deleteLink = Form::deleteajax(url()->route('html-block.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
43 43
                 $copy = '<a href="/admin/html-block/'.$query->id.'/copy" class="btn btn-default btn-sm btn-info"><i class="entypo-pencil"></i>Copy</a>';
44 44
                 $links = '<a href="'.url()->route('html-block.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$copy.' '.$deleteLink;
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     public function store(Request $request)
60 60
     {
61
-        $result  = HtmlBlockService::create($request->all());
61
+        $result = HtmlBlockService::create($request->all());
62 62
         return HtmlBlockService::notificationRedirect('html-block.index', $result, 'The html block was inserted.');     
63 63
     }
64 64
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function update(Request $request, $htmlBlockId)
77 77
     {
78
-        $result  = HtmlBlockService::updateById($request->all(), $htmlBlockId);
78
+        $result = HtmlBlockService::updateById($request->all(), $htmlBlockId);
79 79
             return HtmlBlockService::notificationRedirect('html-block.index', $result, 'The html block was updated.');     
80 80
     }
81 81
 
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $htmlBlock = HtmlBlockService::find($htmlBlockId);
96 96
 
97
-        if($htmlBlock) {
98
-            $result  = HtmlBlockService::createCopy($request->all(), $htmlBlockId);
97
+        if ($htmlBlock) {
98
+            $result = HtmlBlockService::createCopy($request->all(), $htmlBlockId);
99 99
             return HtmlBlockService::notificationRedirect('html-block.index', $result, 'The html block was inserted.');      
100 100
         }
101 101
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
     public function destroy($htmlBlockId)
106 106
     {
107
-        $result  = HtmlBlockService::destroy($htmlBlockId);
107
+        $result = HtmlBlockService::destroy($htmlBlockId);
108 108
 
109 109
         if ($result) {
110 110
             Notification::success('The html block was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/CouponController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
             ->with(array('couponGroup'));
34 34
             
35 35
             $datatables = DataTables::of($query)
36
-            ->filterColumn('title', function ($query, $keyword) {
36
+            ->filterColumn('title', function($query, $keyword) {
37 37
                 $query->whereRaw("coupon.title like ?", ["%{$keyword}%"]);
38 38
             })
39 39
 
40
-            ->addColumn('action', function ($query) {
41
-                $deleteLink = Form::deleteajax('/admin/coupon/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
40
+            ->addColumn('action', function($query) {
41
+                $deleteLink = Form::deleteajax('/admin/coupon/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
42 42
                 $links = '<a href="/admin/coupon/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
43 43
             
44 44
                 return $links;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     public function store(Request $request)
65 65
     {
66
-        $result  = CouponService::create($request->all());
66
+        $result = CouponService::create($request->all());
67 67
         return CouponService::notificationRedirect('coupon.index', $result, 'The coupon was inserted.');
68 68
     }
69 69
 
@@ -83,13 +83,13 @@  discard block
 block discarded – undo
83 83
 
84 84
     public function update(Request $request, $couponId)
85 85
     {
86
-        $result  = CouponService::updateById($request->all(), $couponId);
86
+        $result = CouponService::updateById($request->all(), $couponId);
87 87
         return CouponService::notificationRedirect('coupon.index', $result, 'The coupon was updated.');
88 88
     }
89 89
 
90 90
     public function destroy($couponId)
91 91
     {
92
-        $result  = CouponService::destroy($couponId);
92
+        $result = CouponService::destroy($couponId);
93 93
 
94 94
         if ($result) {
95 95
             Notification::success('The coupon was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/ShopController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
 
26 26
             $datatables = DataTables::of($query)
27 27
 
28
-            ->addColumn('action', function ($query) {
28
+            ->addColumn('action', function($query) {
29 29
                 $deleteLink = Form::deleteajax(url()->route('shop.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
30 30
                 $links = '<a href="'.url()->route('shop.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
31 31
                 return $links;
32 32
             })
33 33
 
34
-            ->addColumn('image', function ($query) {
34
+            ->addColumn('image', function($query) {
35 35
                 if ($query->logo_file_name) {
36 36
                     return '<img src="http://shop.brulo.nl/files/'.$query->id.'/logo/'.$query->logo_file_name.'"  />';
37 37
                 }
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/OrderStatusEmailTemplateController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
             $query = OrderStatusEmailTemplateService::getModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
25 25
             
26 26
             $datatables = DataTables::of($query)
27
-            ->addColumn('action', function ($query) {
28
-                $deleteLink = Form::deleteajax('/admin/order-status-email-template/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
27
+            ->addColumn('action', function($query) {
28
+                $deleteLink = Form::deleteajax('/admin/order-status-email-template/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
29 29
                 $links = '<a href="/admin/order-status-email-template/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
30 30
             
31 31
                 return $links;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function store(Request $request)
46 46
     {
47
-        $result  = OrderStatusEmailTemplateService::create($request->all());
47
+        $result = OrderStatusEmailTemplateService::create($request->all());
48 48
         return OrderStatusEmailTemplateService::notificationRedirect('order-status-email-template.index', $result, 'The template was inserted.');
49 49
     }
50 50
 
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
 
61 61
     public function update(Request $request, $templateId)
62 62
     {
63
-        $result  = OrderStatusEmailTemplateService::updateById($request->all(), $templateId);
63
+        $result = OrderStatusEmailTemplateService::updateById($request->all(), $templateId);
64 64
         return OrderStatusEmailTemplateService::notificationRedirect('order-status-email-template.index', $result, 'The template was updated.');
65 65
     }
66 66
 
67 67
     public function destroy($templateId)
68 68
     {
69
-        $result  = OrderStatusEmailTemplateService::destroy($templateId);
69
+        $result = OrderStatusEmailTemplateService::destroy($templateId);
70 70
 
71 71
         if ($result) {
72 72
             Notification::success('template was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/NewsGroupController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             $query = NewsService::getGroupModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
24 24
 
25 25
             $datatables = \DataTables::of($query)
26
-            ->addColumn('action', function ($query) {
26
+            ->addColumn('action', function($query) {
27 27
                 $deleteLink = \Form::deleteajax(url()->route('news-group.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
28 28
                 $links = '<a href="'.url()->route('news-group.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
29 29
             
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function store(Request $request)
46 46
     {
47
-        $result  = NewsService::createGroup($request->all());
47
+        $result = NewsService::createGroup($request->all());
48 48
         return NewsService::notificationRedirect('news-group.index', $result, 'The news group was inserted.');
49 49
     }
50 50
 
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function update(Request $request, $newsGroupId)
57 57
     {
58
-        $result  = NewsService::updateGroupById($request->all(), $newsGroupId);
58
+        $result = NewsService::updateGroupById($request->all(), $newsGroupId);
59 59
         return NewsService::notificationRedirect('news-group.index', $result, 'The news group was updated.');
60 60
     }
61 61
 
62 62
     public function destroy($newsGroupId)
63 63
     {
64
-        $result  = NewsService::destroyGroup($newsGroupId);
64
+        $result = NewsService::destroyGroup($newsGroupId);
65 65
 
66 66
         if ($result) {
67 67
             Notification::success('The news group was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/ExtraFieldDefaultValueController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
             $query = ExtraFieldService::getValueModel()->where('extra_field_id', '=', $extraFieldId);
25 25
             
26
-            $datatables = DataTables::of($query)->addColumn('action', function ($query) use ($extraFieldId) {
26
+            $datatables = DataTables::of($query)->addColumn('action', function($query) use ($extraFieldId) {
27 27
                 $deleteLink = Form::deleteajax(url()->route('extra-field.values.destroy', array('ExtraFieldId' => $extraFieldId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
28 28
                 $links = ' <a href="'.url()->route('extra-field.values.edit', array('ExtraFieldId' => $extraFieldId, 'id' => $query->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> 
29 29
                 '.$deleteLink;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function store(Request $request, $extraFieldId)
46 46
     {
47
-        $result  = ExtraFieldService::createValue($request->all(), $extraFieldId);
47
+        $result = ExtraFieldService::createValue($request->all(), $extraFieldId);
48 48
         return ExtraFieldService::notificationRedirect(array('extra-field.values.index', $extraFieldId), $result, 'The extra field was inserted.');
49 49
     }
50 50
 
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function update(Request $request, $extraFieldId, $id)
57 57
     {
58
-        $result  = ExtraFieldService::updateValueById($request->all(), $extraFieldId, $id);
58
+        $result = ExtraFieldService::updateValueById($request->all(), $extraFieldId, $id);
59 59
         return ExtraFieldService::notificationRedirect(array('extra-field.values.index', $extraFieldId), $result, 'The extra field was updated.');
60 60
     }
61 61
 
62 62
     public function destroy($extraFieldId, $id)
63 63
     {
64
-        $result  = ExtraFieldService::destroyValue($id);
64
+        $result = ExtraFieldService::destroyValue($id);
65 65
 
66 66
         if ($result) {
67 67
             Notification::success('Extra field was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/ExtraFieldController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             
29 29
             $datatables = DataTables::of($query)
30 30
 
31
-            ->addColumn('category', function ($query) {
31
+            ->addColumn('category', function($query) {
32 32
                 if ($query->categories) {
33 33
                     $output = array();
34 34
                     foreach ($query->categories as $categorie) {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
                 }
40 40
             })
41 41
 
42
-            ->addColumn('action', function ($query) {
42
+            ->addColumn('action', function($query) {
43 43
                 $deleteLink = Form::deleteajax(url()->route('extra-field.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
44 44
                 $links = '<a href="'.url()->route('extra-field.values.index', $query->id).'" class="btn btn-default btn-sm btn-info"><i class="entypo-pencil"></i>'.$query->values->count().' values</a>
45 45
                  <a href="'.url()->route('extra-field.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     public function store(Request $request)
63 63
     {
64
-        $result  = ExtraFieldService::create($request->all());
64
+        $result = ExtraFieldService::create($request->all());
65 65
         return ExtraFieldService::notificationRedirect('extra-field.index', $result, 'The extra field was inserted.');
66 66
     }
67 67
 
@@ -72,13 +72,13 @@  discard block
 block discarded – undo
72 72
 
73 73
     public function update(Request $request, $id)
74 74
     {
75
-        $result  = ExtraFieldService::updateById($request->all(), $id);
75
+        $result = ExtraFieldService::updateById($request->all(), $id);
76 76
         return ExtraFieldService::notificationRedirect('extra-field.index', $result, 'The extra field was updated.');
77 77
     }
78 78
 
79 79
     public function destroy($id)
80 80
     {
81
-        $result  = ExtraFieldService::destroy($id);
81
+        $result = ExtraFieldService::destroy($id);
82 82
 
83 83
         if ($result) {
84 84
             Notification::success('Extra field was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/TaxRateController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     {
14 14
         if ($request->wantsJson()) {
15 15
             $query = TaxRateService::getModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
16
-            $datatables = DataTables::of($query)->addColumn('action', function ($query) {
16
+            $datatables = DataTables::of($query)->addColumn('action', function($query) {
17 17
                 $deleteLink = Form::deleteajax(url()->route('tax-rate.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-sm btn-danger'), $query->title);
18 18
                 $links = '<a href="'.url()->route('tax-rate.edit', $query->id).'" class="btn btn-sm btn-success"><i class="fi-pencil"></i>Edit</a>  '.$deleteLink;
19 19
                 return $links;
Please login to merge, or discard this patch.