Test Failed
Push — master ( 1129de...bac6db )
by Gianluca
06:48
created
src/Models/User.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         'email_verified_at' => 'datetime',
44 44
     ];
45 45
 
46
-    public function orders(){
47
-        return $this->hasMany(Order::class,'user_id');
46
+    public function orders() {
47
+        return $this->hasMany(Order::class, 'user_id');
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
src/Models/AdminSetting.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@
 block discarded – undo
10 10
 {
11 11
     use HasFactory;
12 12
 
13
-    public static function getStripeApiKey(){
13
+    public static function getStripeApiKey() {
14 14
         $globalSetting = self::first();
15 15
         return $globalSetting->stripe_api_key;
16 16
     }
17 17
 
18
-    public static function getStripeApiSecretKey(){
18
+    public static function getStripeApiSecretKey() {
19 19
         $globalSetting = self::first();
20 20
         return $globalSetting->stripe_api_secret;
21 21
     }
22 22
 
23
-    public static function getIban(){
23
+    public static function getIban() {
24 24
         $globalSetting = self::first();
25 25
         return $globalSetting->iban;
26 26
     }
Please login to merge, or discard this patch.
src/Models/Order.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -14,21 +14,21 @@
 block discarded – undo
14 14
 {
15 15
     use HasFactory;
16 16
 
17
-    protected $dates = ["created_at","updated_at"];
17
+    protected $dates = ["created_at", "updated_at"];
18 18
 
19
-    public function status(){
20
-        return $this->belongsTo(OrderStatus::class,'status_id');
19
+    public function status() {
20
+        return $this->belongsTo(OrderStatus::class, 'status_id');
21 21
     }
22 22
 
23
-    public function typePayment(){
24
-        return $this->belongsTo(TypePayment::class,'payment_type_id');
23
+    public function typePayment() {
24
+        return $this->belongsTo(TypePayment::class, 'payment_type_id');
25 25
     }
26 26
 
27
-    public function user(){
28
-        return $this->belongsTo(User::class,'user_id');
27
+    public function user() {
28
+        return $this->belongsTo(User::class, 'user_id');
29 29
     }
30 30
 
31
-    public function products(){
32
-        return $this->belongsToMany(ProductItem::class,'product_order','order_id','product_item_id')->withPivot('number_products');
31
+    public function products() {
32
+        return $this->belongsToMany(ProductItem::class, 'product_order', 'order_id', 'product_item_id')->withPivot('number_products');
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Models/Cart.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,15 +12,15 @@
 block discarded – undo
12 12
 {
13 13
     use HasFactory;
14 14
     protected $table = 'cart';
15
-    protected $dates = ["created_at","updated_at"];
15
+    protected $dates = ["created_at", "updated_at"];
16 16
 
17 17
 
18
-    public function user(){
19
-        return $this->belongsTo(User::class,'user_id');
18
+    public function user() {
19
+        return $this->belongsTo(User::class, 'user_id');
20 20
     }
21 21
 
22
-    static function emptyCart(){
23
-        self::where('user_id',Auth::user()->id)->delete();
22
+    static function emptyCart() {
23
+        self::where('user_id', Auth::user()->id)->delete();
24 24
     }
25 25
 
26 26
 
Please login to merge, or discard this patch.
database/migrations/2020_12_07_082433_create_order_products.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_order', function (Blueprint $table) {
16
+        Schema::create('product_order', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->unsignedBigInteger('order_id');
19 19
             $table->unsignedBigInteger('product_item_id');
Please login to merge, or discard this patch.
database/migrations/2021_10_12_000000_modify_users_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::table('users', function (Blueprint $table) {
16
+        Schema::table('users', function(Blueprint $table) {
17 17
             $table->string('name')->nullable()->change();
18 18
             $table->string('first_name')->nullable();
19 19
             $table->string('last_name')->nullable();
Please login to merge, or discard this patch.
src/MongicommerceServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     public function boot()
22 22
     {
23 23
 
24
-        Blade::directive('money', function ($amount){
24
+        Blade::directive('money', function($amount) {
25 25
             #return $fmt->formatCurrency($amount,"EUR");
26 26
             /*return "<?= $fmt->formatCurrency($amount,'EUR'); ?>";*/
27 27
             return "<?= abs($amount) > 1000 ? '€ ' .number_format($amount, 0, ',', '.') : '€ ' . number_format($amount, 2, ',', '.') ?>";
@@ -35,12 +35,12 @@  discard block
 block discarded – undo
35 35
         $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
36 36
         $this->loadRoutesFrom(__DIR__.'/routes.php');
37 37
 
38
-        if(Schema::hasTable('admin_settings')){
38
+        if (Schema::hasTable('admin_settings')) {
39 39
             //inject global information into views
40 40
             View::share('mongicommerce', AdminSetting::first());
41 41
         }
42 42
 
43
-        if(Schema::hasTable('categories')){
43
+        if (Schema::hasTable('categories')) {
44 44
             //inject global information into views
45 45
             View::share('categories', Template::getCategoryTree());
46 46
         }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'mongicommerce');
107 107
 
108 108
         // Register the main class to use with the facade
109
-        $this->app->singleton('mongicommerce', function () {
109
+        $this->app->singleton('mongicommerce', function() {
110 110
             return new Mongicommerce;
111 111
         });
112 112
     }
Please login to merge, or discard this patch.
src/Models/Product.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -14,33 +14,33 @@
 block discarded – undo
14 14
 {
15 15
     use HasFactory;
16 16
 
17
-    protected $dates = ["created_at","updated_at"];
17
+    protected $dates = ["created_at", "updated_at"];
18 18
 
19
-    public function items(){
19
+    public function items() {
20 20
         return $this->hasMany(ProductItem::class);
21 21
     }
22 22
 
23
-    public function category(){
23
+    public function category() {
24 24
         return $this->belongsTo(Category::class);
25 25
     }
26 26
 
27
-    public function details(){
28
-        return $this->hasManyThrough(ProductItemDetail::class,ProductItem::class);
27
+    public function details() {
28
+        return $this->hasManyThrough(ProductItemDetail::class, ProductItem::class);
29 29
     }
30 30
 
31
-    public static function getPrice($product_item_id){
31
+    public static function getPrice($product_item_id) {
32 32
         return ProductItem::find($product_item_id)->price;
33 33
     }
34 34
 
35
-    public static function getImage($product_item_id){
35
+    public static function getImage($product_item_id) {
36 36
         return ProductItem::find($product_item_id)->image;
37 37
     }
38 38
 
39
-    public static function getDescription($product_item_id){
39
+    public static function getDescription($product_item_id) {
40 40
         return ProductItem::find($product_item_id)->description;
41 41
     }
42 42
 
43
-    public static function getName($product_item_id){
43
+    public static function getName($product_item_id) {
44 44
         return ProductItem::find($product_item_id)->name;
45 45
     }
46 46
 
Please login to merge, or discard this patch.
src/Http/Controllers/shop/ShopSingleProductController.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,20 +7,20 @@
 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
-         }
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 15
 
16
-         $details_fields = Template::getDetailsFields($product,$product_item_id);
17
-         $configuration_fields = Template::getConfigurationFields($product_item_id);
18
-         $btn_cart = Template::buttonCart($product_item_id);
19
-         $price = Product::getPrice($product_item_id);
20
-         $image = Product::getImage($product_item_id);
21
-         $description = Product::getDescription($product_item_id);
22
-         $name = Product::getName($product_item_id);
16
+            $details_fields = Template::getDetailsFields($product,$product_item_id);
17
+            $configuration_fields = Template::getConfigurationFields($product_item_id);
18
+            $btn_cart = Template::buttonCart($product_item_id);
19
+            $price = Product::getPrice($product_item_id);
20
+            $image = Product::getImage($product_item_id);
21
+            $description = Product::getDescription($product_item_id);
22
+            $name = Product::getName($product_item_id);
23 23
 
24
-         return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart','price','image','description','name'));
25
-     }
24
+            return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart','price','image','description','name'));
25
+        }
26 26
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,13 +7,13 @@  discard block
 block discarded – undo
7 7
 
8 8
 class ShopSingleProductController extends Controller
9 9
 {
10
-     public function page($id,$product_item_id = null){
10
+     public function page($id, $product_item_id = null) {
11 11
          $product = Product::find($id);
12
-         if($product_item_id == null){
13
-             return redirect()->route('shop.single.product',[$product->id,$product->items->first()->id]);
12
+         if ($product_item_id == null) {
13
+             return redirect()->route('shop.single.product', [$product->id, $product->items->first()->id]);
14 14
          }
15 15
 
16
-         $details_fields = Template::getDetailsFields($product,$product_item_id);
16
+         $details_fields = Template::getDetailsFields($product, $product_item_id);
17 17
          $configuration_fields = Template::getConfigurationFields($product_item_id);
18 18
          $btn_cart = Template::buttonCart($product_item_id);
19 19
          $price = Product::getPrice($product_item_id);
@@ -21,6 +21,6 @@  discard block
 block discarded – undo
21 21
          $description = Product::getDescription($product_item_id);
22 22
          $name = Product::getName($product_item_id);
23 23
 
24
-         return view('mongicommerce.pages.single-product',compact('product','details_fields','configuration_fields','btn_cart','price','image','description','name'));
24
+         return view('mongicommerce.pages.single-product', compact('product', 'details_fields', 'configuration_fields', 'btn_cart', 'price', 'image', 'description', 'name'));
25 25
      }
26 26
 }
Please login to merge, or discard this patch.