Passed
Push — master ( d05c2b...dc7695 )
by Luiz Kim
02:25
created
src/Entity/Order.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1093,7 +1093,7 @@
 block discarded – undo
1093 1093
             return false;
1094 1094
 
1095 1095
         return $currentUser->getPeople()->getLink()->exists(
1096
-            function ($key, $element) use ($provider) {
1096
+            function($key, $element) use ($provider) {
1097 1097
                 return $element->getCompany() === $provider;
1098 1098
             }
1099 1099
         );
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1089,8 +1089,9 @@
 block discarded – undo
1089 1089
 
1090 1090
     public function canAccess($currentUser): bool
1091 1091
     {
1092
-        if (($provider = $this->getProvider()) === null)
1093
-            return false;
1092
+        if (($provider = $this->getProvider()) === null) {
1093
+                    return false;
1094
+        }
1094 1095
 
1095 1096
         return $currentUser->getPeople()->getLink()->exists(
1096 1097
             function ($key, $element) use ($provider) {
Please login to merge, or discard this patch.
src/Service/OrderService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         RequestStack $requestStack
22 22
 
23 23
     ) {
24
-        $this->request  = $requestStack->getCurrentRequest();
24
+        $this->request = $requestStack->getCurrentRequest();
25 25
     }
26 26
 
27 27
     public function calculateOrderPrice(Order $order)
Please login to merge, or discard this patch.
src/Service/OrderProductService.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         foreach ($subProducts as $subproduct) {
68 68
             $product = $this->manager->getRepository(Product::class)->find($subproduct['product']);
69
-            $productGroup =  $this->manager->getRepository(ProductGroup::class)->find($subproduct['productGroup']);
69
+            $productGroup = $this->manager->getRepository(ProductGroup::class)->find($subproduct['productGroup']);
70 70
             $this->addSubproduct($orderProduct, $product, $productGroup, $subproduct['quantity']);
71 71
         }
72 72
         $this->orderProductQueueService->addProductToQueue($orderProduct);
Please login to merge, or discard this patch.
Braces   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,9 @@  discard block
 block discarded – undo
58 58
     public function postPersist(OrderProduct $orderProduct)
59 59
     {
60 60
 
61
-        if (!self::$mainProduct) return;
61
+        if (!self::$mainProduct) {
62
+          return;
63
+        }
62 64
         self::$mainProduct = false;
63 65
 
64 66
         $json = json_decode($this->request->getContent(), true);
@@ -76,7 +78,9 @@  discard block
 block discarded – undo
76 78
     public function preRemove(OrderProduct $orderProduct)
77 79
     {
78 80
 
79
-        if (!self::$mainProduct) return;
81
+        if (!self::$mainProduct) {
82
+          return;
83
+        }
80 84
         self::$mainProduct = false;
81 85
         $order = $orderProduct->getOrder();
82 86
         $this->manager->persist($order->setPrice(0));
@@ -85,8 +89,9 @@  discard block
 block discarded – undo
85 89
             'parentProduct'  => $orderProduct->getProduct(),
86 90
         ]);
87 91
 
88
-        foreach ($parentProducts as $parentProduct)
89
-            $this->manager->remove($parentProduct);
92
+        foreach ($parentProducts as $parentProduct) {
93
+                    $this->manager->remove($parentProduct);
94
+        }
90 95
         $this->manager->flush();
91 96
 
92 97
         self::$calculateBefore[] = $order;
Please login to merge, or discard this patch.
src/Service/OrderPrintService.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 
48 48
         $quantity = $orderProduct->getQuantity();
49 49
         $this->printService->addLine(
50
-            $indent . $quantity . ' X ' . $product->getProduct(),
51
-            " R$ " . number_format($orderProduct->getTotal(), 2, ',', '.'),
50
+            $indent.$quantity.' X '.$product->getProduct(),
51
+            " R$ ".number_format($orderProduct->getTotal(), 2, ',', '.'),
52 52
             '.'
53 53
         );
54 54
     }
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
         }
67 67
 
68 68
         foreach ($groupedChildren as $groupName => $orderProductChildren) {
69
-            $this->printService->addLine(strtoupper($groupName) . ":");
69
+            $this->printService->addLine(strtoupper($groupName).":");
70 70
             foreach ($orderProductChildren as $orderProductChild) {
71 71
                 $product = $orderProductChild->getProduct();
72
-                $this->printService->addLine("  - " . $product->getProduct());
72
+                $this->printService->addLine("  - ".$product->getProduct());
73 73
             }
74 74
         }
75 75
         $this->printService->addLine('', '', '-');
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         foreach ($queues as $queueName => $orderProducts) {
97 97
             $parentOrderProducts = array_filter($orderProducts, fn($orderProduct) => $orderProduct->getOrderProduct() === null);
98 98
             if (!empty($parentOrderProducts)) {
99
-                $this->printService->addLine(strtoupper($queueName) . ":");
99
+                $this->printService->addLine(strtoupper($queueName).":");
100 100
                 $this->printQueueProducts($orderProducts);
101 101
                 $this->printService->addLine('', '', ' ');
102 102
             }
@@ -106,11 +106,11 @@  discard block
 block discarded – undo
106 106
     public function generatePrintData(Order $order, string $printType, string $deviceType)
107 107
     {
108 108
 
109
-        $this->printService->addLine("PEDIDO #" . $order->getId());
109
+        $this->printService->addLine("PEDIDO #".$order->getId());
110 110
         $this->printService->addLine($order->getOrderDate()->format('d/m/Y H:i'));
111 111
         $client = $order->getClient();
112 112
         $this->printService->addLine(($client !== null ? $client->getName() : 'Não informado'));
113
-        $this->printService->addLine("R$ " . number_format($order->getPrice(), 2, ',', '.'));
113
+        $this->printService->addLine("R$ ".number_format($order->getPrice(), 2, ',', '.'));
114 114
         $this->printService->addLine("", "", "-");
115 115
         $queues = $this->getQueues($order);
116 116
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,8 +84,9 @@
 block discarded – undo
84 84
             $this->printProduct($parentOrderProduct);
85 85
 
86 86
             $childs = $parentOrderProduct->getOrderProductComponents();
87
-            if (!empty($childs))
88
-                $this->printChildren($childs);
87
+            if (!empty($childs)) {
88
+                            $this->printChildren($childs);
89
+            }
89 90
 
90 91
             $this->printService->addLine('', '', '-');
91 92
         }
Please login to merge, or discard this patch.