Test Failed
Push — master ( 8257ee...cfb444 )
by Gianluca
13:53 queued 07:08
created
src/Http/Controllers/admin/AdminNewProductController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
 
14 14
 class AdminNewProductController extends Controller
15 15
 {
16
-    public function page(){
16
+    public function page() {
17 17
         return view('mongicommerce::admin.pages.products.new_product');
18 18
     }
19 19
 
20
-    public function createNewProduct(Request $r){
20
+    public function createNewProduct(Request $r) {
21 21
 
22 22
         $r->validate([
23 23
             'product_name' => 'required',
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
         $product->category_id = $category_id;
39 39
         $product->save();
40 40
 
41
-        $base64_str = substr($get_image, strpos($get_image, ",")+1);
41
+        $base64_str = substr($get_image, strpos($get_image, ",") + 1);
42 42
         $image = base64_decode($base64_str);
43 43
         $destinationPath = public_path().'/uploads/products_img/'.$product->id.'/';
44 44
         $destinationPathDB = url('/').'/uploads/products_img/'.$product->id.'/';
45 45
 
46
-        if(!File::isDirectory($destinationPath)){
46
+        if (!File::isDirectory($destinationPath)) {
47 47
             File::makeDirectory($destinationPath, $mode = 0777, true, true);
48 48
         }
49 49
         $image_name = time().'.'.'jpeg';
Please login to merge, or discard this patch.
src/Libraries/Template.php 2 patches
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     public static function getProducts($id = null){
53 53
         if($id === null){
54 54
             $products = Product::all();
55
-        }else{
55
+        } else{
56 56
             $products = Category::find($id)->products;
57 57
         }
58 58
         return $products;
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             $html .= "<label>{$label}</label>";
77 77
             $html .= "<input class='form-control' type='{$type}' value='{$value}'>";
78 78
             return $html;
79
-        }else{
79
+        } else{
80 80
             $html = '';
81 81
             $html .= "<label>{$label}</label>";
82 82
             $html .= "<textarea class='form-control'>{$value}</textarea>";
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                 if(isset($filter[$detail->id])){
118 118
                     if($filter[$detail->id] == $detail_value_id){
119 119
                         $selected = 'selected';
120
-                    }else{
120
+                    } else{
121 121
                         $selected = '';
122 122
                     }
123 123
                 }
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
 
16 16
 class Template
17 17
 {
18
-    public static function getStructureCategories(){
18
+    public static function getStructureCategories() {
19 19
 
20 20
         $categories = Category::with('children')->whereNull('parent_id')->get();
21 21
         $tree = [];
22
-        foreach($categories as $category){
22
+        foreach ($categories as $category) {
23 23
             $tree[] = [
24 24
                 'id' => $category->id,
25 25
                 'text' => $category->name,
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
         return $tree;
31 31
     }
32 32
 
33
-    private static function recursiveChildren($childrens){
33
+    private static function recursiveChildren($childrens) {
34 34
         $childs = [];
35
-        foreach ($childrens as $children){
35
+        foreach ($childrens as $children) {
36 36
             $childs[] = [
37 37
                 'id' => $children->id,
38 38
                 'text' => $children->name,
@@ -48,34 +48,34 @@  discard block
 block discarded – undo
48 48
      * @param Int $id
49 49
      * @return Product
50 50
      */
51
-    public static function getProducts($id = null){
52
-        if($id === null){
51
+    public static function getProducts($id = null) {
52
+        if ($id === null) {
53 53
             $products = Product::all();
54
-        }else{
54
+        } else {
55 55
             $products = Category::find($id)->products;
56 56
         }
57 57
         return $products;
58 58
     }
59 59
 
60
-    public static function getDetailsFields(Product $product,$product_item_id){
60
+    public static function getDetailsFields(Product $product, $product_item_id) {
61 61
         $element = '<div class="row">';
62 62
 
63
-        foreach($product->details->groupBy('product_detail_id') as $key => $details){
63
+        foreach ($product->details->groupBy('product_detail_id') as $key => $details) {
64 64
 
65
-            $element.= self::generateDetailHtml(Detail::find($key),$details->groupBy('product_detail_value_id'),$product->id,$product_item_id);
65
+            $element .= self::generateDetailHtml(Detail::find($key), $details->groupBy('product_detail_value_id'), $product->id, $product_item_id);
66 66
         }
67
-        $element.= '<p class="show_error_product" style="color: red; display: none;">Prodotto non disponibile</p>';
67
+        $element .= '<p class="show_error_product" style="color: red; display: none;">Prodotto non disponibile</p>';
68 68
         $element .= '</div>';
69 69
         return $element;
70 70
     }
71 71
 
72
-    public static function generateHtmlField($type,$value,$label){
73
-        if($type !== 'textarea'){
72
+    public static function generateHtmlField($type, $value, $label) {
73
+        if ($type !== 'textarea') {
74 74
             $html = '';
75 75
             $html .= "<label>{$label}</label>";
76 76
             $html .= "<input class='form-control' type='{$type}' value='{$value}'>";
77 77
             return $html;
78
-        }else{
78
+        } else {
79 79
             $html = '';
80 80
             $html .= "<label>{$label}</label>";
81 81
             $html .= "<textarea class='form-control'>{$value}</textarea>";
@@ -83,40 +83,40 @@  discard block
 block discarded – undo
83 83
         }
84 84
     }
85 85
 
86
-    public static function getConfigurationFields($product_item_id){
87
-        $configurationFields = ProductConfigurationField::where('product_item_id',$product_item_id)->get();
86
+    public static function getConfigurationFields($product_item_id) {
87
+        $configurationFields = ProductConfigurationField::where('product_item_id', $product_item_id)->get();
88 88
         $element = '';
89
-        foreach ($configurationFields as $field){
89
+        foreach ($configurationFields as $field) {
90 90
                 $element .= '<div class="row">';
91
-                $element .= self::generateHtmlField($field->field->type,$field->value,$field->field->name);
91
+                $element .= self::generateHtmlField($field->field->type, $field->value, $field->field->name);
92 92
                 $element .= '</div>';
93 93
             }
94 94
         return $element;
95 95
     }
96 96
 
97
-    public static function buttonCart($product_item_id){
97
+    public static function buttonCart($product_item_id) {
98 98
         return "<button onclick='addToCart(this)' data-product_item_id='{$product_item_id}' class='btn btn-primary mt-3'>Salva nel carrello</button>";
99 99
     }
100 100
 
101
-    public static function generateDetailHtml($detail,$values,$product_id,$product_item_id){
101
+    public static function generateDetailHtml($detail, $values, $product_id, $product_item_id) {
102 102
 
103 103
         $type = $detail->type;
104 104
         $html = '';
105
-        if($type === 'select'){
105
+        if ($type === 'select') {
106 106
             $html = '<label>'.$detail->name.'</label>';
107
-            $html .= '<select onchange="getVariationProduct()" data-product_id="'.$product_id.'" data-detail_id="'.$detail->id .'" class="form-control mongifield_into_product">';
107
+            $html .= '<select onchange="getVariationProduct()" data-product_id="'.$product_id.'" data-detail_id="'.$detail->id.'" class="form-control mongifield_into_product">';
108 108
             $selected = '';
109 109
 
110
-            $details = ProductItemDetail::where('product_item_id',$product_item_id)->get();
110
+            $details = ProductItemDetail::where('product_item_id', $product_item_id)->get();
111 111
             $filter = [];
112
-            foreach ($details as $_detail){
112
+            foreach ($details as $_detail) {
113 113
                 $filter[$_detail->product_detail_id] = $_detail->product_detail_value_id;
114 114
             }
115
-            foreach ($values as $detail_value_id =>$value){
116
-                if(isset($filter[$detail->id])){
117
-                    if($filter[$detail->id] == $detail_value_id){
115
+            foreach ($values as $detail_value_id =>$value) {
116
+                if (isset($filter[$detail->id])) {
117
+                    if ($filter[$detail->id] == $detail_value_id) {
118 118
                         $selected = 'selected';
119
-                    }else{
119
+                    } else {
120 120
                         $selected = '';
121 121
                     }
122 122
                 }
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
         return $html;
130 130
     }
131 131
 
132
-    public static function MoveSessionToCart($user_id){
132
+    public static function MoveSessionToCart($user_id) {
133 133
         $user = User::find($user_id);
134 134
         $elements_in_cart = session('cart');
135
-        if(!empty($elements_in_cart)){
136
-            if(Cart::where('user_id',$user->id)->count() <= 0){
137
-                foreach($elements_in_cart as $product_id => $count){
135
+        if (!empty($elements_in_cart)) {
136
+            if (Cart::where('user_id', $user->id)->count() <= 0) {
137
+                foreach ($elements_in_cart as $product_id => $count) {
138 138
                     $cart = new Cart();
139 139
                     $cart->user_id = $user->id;
140 140
                     $cart->product_item_id = $product_id;
Please login to merge, or discard this patch.
src/Http/Controllers/shop/ShopSingleProductController.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 
14 14
 class ShopSingleProductController extends Controller
15 15
 {
16
-     public function page($id,$product_item_id = null){
16
+     public function page($id, $product_item_id = null) {
17 17
          $product = Product::find($id);
18
-         if($product_item_id == null){
19
-             return redirect()->route('shop.single.product',[$product->id,$product->items->first()->id]);
18
+         if ($product_item_id == null) {
19
+             return redirect()->route('shop.single.product', [$product->id, $product->items->first()->id]);
20 20
          }
21
-         $details_fields = Template::getDetailsFields($product,$product_item_id);
21
+         $details_fields = Template::getDetailsFields($product, $product_item_id);
22 22
          $configuration_fields = Template::getConfigurationFields($product_item_id);
23 23
          $btn_cart = Template::buttonCart($product_item_id);
24 24
 
25 25
 
26
-         return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart'));
26
+         return view('mongicommerce.pages.single-product', compact('product', 'details_fields', 'configuration_fields', 'btn_cart'));
27 27
      }
28 28
 }
Please login to merge, or discard this patch.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
 
8 8
 class ShopSingleProductController extends Controller
9 9
 {
10
-     public function page($id,$product_item_id = null){
11
-         $product = Product::find($id);
12
-         if($product_item_id == null){
13
-             return redirect()->route('shop.single.product',[$product->id,$product->items->first()->id]);
14
-         }
15
-         $details_fields = Template::getDetailsFields($product,$product_item_id);
16
-         $configuration_fields = Template::getConfigurationFields($product_item_id);
17
-         $btn_cart = Template::buttonCart($product_item_id);
18
-         return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart'));
19
-     }
10
+        public function page($id,$product_item_id = null){
11
+            $product = Product::find($id);
12
+            if($product_item_id == null){
13
+                return redirect()->route('shop.single.product',[$product->id,$product->items->first()->id]);
14
+            }
15
+            $details_fields = Template::getDetailsFields($product,$product_item_id);
16
+            $configuration_fields = Template::getConfigurationFields($product_item_id);
17
+            $btn_cart = Template::buttonCart($product_item_id);
18
+            return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart'));
19
+        }
20 20
 }
Please login to merge, or discard this patch.
src/Http/Controllers/admin/AdminNewSingleProductController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,12 +14,12 @@  discard block
 block discarded – undo
14 14
 
15 15
 class AdminNewSingleProductController extends Controller
16 16
 {
17
-    public function page(){
17
+    public function page() {
18 18
         $caregories = Category::all();
19
-        return view('mongicommerce::admin.pages.products.new_single_product',['categories' => $caregories]);
19
+        return view('mongicommerce::admin.pages.products.new_single_product', ['categories' => $caregories]);
20 20
     }
21 21
 
22
-    public function createNewSingleProduct(Request $r){
22
+    public function createNewSingleProduct(Request $r) {
23 23
         $r->validate([
24 24
             'category_id' => 'required',
25 25
             'quantity' => 'required',
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             'image' => 'required',
28 28
         ]);
29 29
 
30
-        $configuration_fields = json_decode($r->get('configuration_fields'),true);
30
+        $configuration_fields = json_decode($r->get('configuration_fields'), true);
31 31
         $quantity = $r->get('quantity');
32 32
         $price = $r->get('price');
33 33
         $product_name = $r->get('product_name');
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
         $product->image = null;
44 44
         $product->save();
45 45
 
46
-        $base64_str = substr($get_image, strpos($get_image, ",")+1);
46
+        $base64_str = substr($get_image, strpos($get_image, ",") + 1);
47 47
         $image = base64_decode($base64_str);
48 48
         $destinationPath = public_path().'/uploads/products_img/'.$product->id.'/'.$product->id.'/';
49 49
         $destinationPathDB = url('/').'/uploads/products_img/'.$product->id.'/'.$product->id.'/';
50 50
 
51
-        if(!File::isDirectory($destinationPath)){
51
+        if (!File::isDirectory($destinationPath)) {
52 52
             File::makeDirectory($destinationPath, $mode = 0777, true, true);
53 53
         }
54 54
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $product_item->quantity = $quantity;
71 71
         $product_item->save();
72 72
 
73
-        foreach ($configuration_fields as $conf_field){
73
+        foreach ($configuration_fields as $conf_field) {
74 74
             $conf_fields_obj = (object) $conf_field;
75 75
             $configuration_field = new ProductConfigurationField();
76 76
             $configuration_field->product_item_id = $product_item->id;
Please login to merge, or discard this patch.
src/Models/ProductConfigurationField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 {
12 12
     use HasFactory;
13 13
 
14
-    public function field(){
15
-        return $this->belongsTo(ConfigurationField::class,'config_field_id');
14
+    public function field() {
15
+        return $this->belongsTo(ConfigurationField::class, 'config_field_id');
16 16
     }
17 17
 
18 18
 }
Please login to merge, or discard this patch.
src/Models/ProductItem.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,19 +11,19 @@
 block discarded – undo
11 11
 {
12 12
     use HasFactory;
13 13
 
14
-    public function details(){
15
-        return $this->hasMany(ProductItemDetail::class,'product_item_id');
14
+    public function details() {
15
+        return $this->hasMany(ProductItemDetail::class, 'product_item_id');
16 16
     }
17 17
 
18
-    public function configurationFields(){
19
-        return $this->hasMany(ProductConfigurationField::class,'product_item_id');
18
+    public function configurationFields() {
19
+        return $this->hasMany(ProductConfigurationField::class, 'product_item_id');
20 20
     }
21 21
 
22
-    public function product(){
22
+    public function product() {
23 23
         return $this->belongsTo(Product::class);
24 24
     }
25 25
 
26
-    public function category(){
26
+    public function category() {
27 27
         return $this->belongsTo(Category::class);
28 28
     }
29 29
 
Please login to merge, or discard this patch.
database/migrations/2020_12_02_085340_create_product_items_table.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
     public function up()
15 15
     {
16
-        Schema::create('product_items', function (Blueprint $table) {
16
+        Schema::create('product_items', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->unsignedBigInteger('product_id')->nullable();
19 19
             $table->unsignedBigInteger('category_id')->nullable();
Please login to merge, or discard this patch.
database/migrations/2020_12_02_091246_create_cart_table.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
     public function up()
15 15
     {
16
-        Schema::create('cart', function (Blueprint $table) {
16
+        Schema::create('cart', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->unsignedBigInteger('user_id');
19 19
             $table->unsignedBigInteger('product_item_id');
Please login to merge, or discard this patch.
src/Http/Controllers/shop/ShopCheckoutController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@
 block discarded – undo
8 8
 
9 9
 class ShopCheckoutController extends Controller
10 10
 {
11
-    public function page(){
11
+    public function page() {
12 12
             $note = session('checkout.note_delivery');
13 13
             $delivery_where = session('checkout.get_in_shop_checkbox');
14
-            return view('mongicommerce.pages.checkout',compact('note','delivery_where'));
14
+            return view('mongicommerce.pages.checkout', compact('note', 'delivery_where'));
15 15
     }
16 16
 
17
-    public function saveDetailsInSession(Request $r){
17
+    public function saveDetailsInSession(Request $r) {
18 18
         $note_delivery = $r->get('note_delivery');
19 19
         $get_in_shop_checkbox = $r->get('get_in_shop_checkbox');
20 20
         session()->put('checkout.note_delivery', $note_delivery);
Please login to merge, or discard this patch.