Test Failed
Push — master ( befccc...a4b299 )
by Gianluca
19:49
created
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.