Test Failed
Push — master ( d9d4f1...04fcd4 )
by Evgenii
06:20
created
src/Models/BaseXmlObject.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,8 +35,9 @@  discard block
 block discarded – undo
35 35
      */
36 36
     protected function processAttributeNameAndValue($mainElement, $attributeName, $attributeValue): void
37 37
     {
38
-        if (empty($attributeValue))
39
-            return;
38
+        if (empty($attributeValue)) {
39
+                    return;
40
+        }
40 41
         if (is_array($attributeValue)) {
41 42
             $this->addValueAsArray($mainElement, $attributeName, $attributeValue);
42 43
         } elseif (is_object($attributeValue)) {
@@ -69,8 +70,9 @@  discard block
 block discarded – undo
69 70
     protected function addValueAsObject($mainElement, $attributeValue)
70 71
     {
71 72
         $newXmlObject = $mainElement->addChild($attributeValue->getAsXmlObject()->getName());
72
-        foreach ($attributeValue->getAsXmlObject()->children() as $child)
73
-            $newXmlObject->addChild($child->getName(), $child);
73
+        foreach ($attributeValue->getAsXmlObject()->children() as $child) {
74
+                    $newXmlObject->addChild($child->getName(), $child);
75
+        }
74 76
     }
75 77
 
76 78
     /**
@@ -81,8 +83,9 @@  discard block
 block discarded – undo
81 83
      */
82 84
     protected function addValueAsString(SimpleXMLElement $mainElement, $attributeName, $attributeValue): void
83 85
     {
84
-        if (empty($attributeValue))
85
-            return;
86
+        if (empty($attributeValue)) {
87
+                    return;
88
+        }
86 89
         if ($attributeName === 'title') {
87 90
             $mainElement[0] = $attributeValue;
88 91
         } elseif (substr($attributeName, 0, 1) === '_') {
Please login to merge, or discard this patch.
src/DalliClient.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,9 @@
 block discarded – undo
34 34
      */
35 35
     public function __construct(string $dalliEndpoint, ?string $authToken, ClientInterface $client = null)
36 36
     {
37
-        if (empty($authToken))
38
-            throw new EmptyTokenException();
37
+        if (empty($authToken)) {
38
+                    throw new EmptyTokenException();
39
+        }
39 40
 
40 41
         $this->client = $client ?? new Client();
41 42
         $this->dalliEndpoint = $dalliEndpoint;
Please login to merge, or discard this patch.
examples/SendOrdersToCart.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,8 +54,9 @@
 block discarded – undo
54 54
 $apiBody->add($order);
55 55
 
56 56
 $success = !$dalliClient->sendApiRequest($apiBody);
57
-if (!$success)
57
+if (!$success) {
58 58
     foreach ($dalliClient->getErrors() as $error)
59 59
         echo $error;
60
+}
60 61
 
61 62
 echo $dalliClient->getResponseBody();
Please login to merge, or discard this patch.
examples/ClearBasket.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,9 @@
 block discarded – undo
12 12
 
13 13
 $success = $dalliClient->sendApiRequest($apiBody);
14 14
 
15
-if (!$success)
15
+if (!$success) {
16 16
     foreach ($dalliClient->getErrors() as $error)
17 17
         echo $error;
18
+}
18 19
 
19 20
 echo $dalliClient->getResponseBody();
Please login to merge, or discard this patch.
src/Models/DalliApiBody.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,8 +26,9 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function __construct(?string $apiMethodName, ?array $params = [])
28 28
     {
29
-        if (empty($apiMethodName))
30
-            throw new EmptyApiMethodException();
29
+        if (empty($apiMethodName)) {
30
+                    throw new EmptyApiMethodException();
31
+        }
31 32
 
32 33
         $this->apiMethodName = $apiMethodName;
33 34
         $this->mainElement = new SimpleXMLElement("<$this->apiMethodName></$this->apiMethodName>");
@@ -38,8 +39,9 @@  discard block
 block discarded – undo
38 39
 
39 40
     private function parseParamsToXml(): void
40 41
     {
41
-        if (empty($this->params))
42
-            return;
42
+        if (empty($this->params)) {
43
+                    return;
44
+        }
43 45
         $this->addParamArrayToElement($this->mainElement, $this->params);
44 46
     }
45 47
 
Please login to merge, or discard this patch.
examples/GetOrderStatus.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,9 +13,10 @@
 block discarded – undo
13 13
 
14 14
 $success = $dalliClient->sendApiRequest($apiBody);
15 15
 
16
-if (!$success)
16
+if (!$success) {
17 17
     foreach ($dalliClient->getErrors() as $error)
18 18
         echo $error;
19
+}
19 20
 
20 21
 $dispatcher = new OrderStatusDispatcher($dalliClient->getResponseBody());
21 22
 
Please login to merge, or discard this patch.
src/OrderStatusDispatcher.php 1 patch
Braces   +12 added lines, -8 removed lines patch added patch discarded remove patch
@@ -43,8 +43,9 @@  discard block
 block discarded – undo
43 43
     public function __construct(string $xmlBody)
44 44
     {
45 45
         $this->xml = simplexml_load_string($xmlBody);
46
-        if ($this->xml === false)
47
-            throw new Exception('XML body is not valid.');
46
+        if ($this->xml === false) {
47
+                    throw new Exception('XML body is not valid.');
48
+        }
48 49
 
49 50
         foreach ($this->xml->order->statushistory->status as $statusItem) {
50 51
             $this->statuses[] = new DalliOrderStatusEvent(
@@ -70,8 +71,9 @@  discard block
 block discarded – undo
70 71
      */
71 72
     public function isItemReturned($barcode): ?bool
72 73
     {
73
-        if (isset($this->items[$barcode]))
74
-            return $this->items[$barcode]->isReturned();
74
+        if (isset($this->items[$barcode])) {
75
+                    return $this->items[$barcode]->isReturned();
76
+        }
75 77
         return null;
76 78
     }
77 79
 
@@ -85,8 +87,9 @@  discard block
 block discarded – undo
85 87
 
86 88
     public function getStatusName(): ?string
87 89
     {
88
-        if ($this->getStatusId())
89
-            DalliOrderStatus::getLabel($this->getStatusId());
90
+        if ($this->getStatusId()) {
91
+                    DalliOrderStatus::getLabel($this->getStatusId());
92
+        }
90 93
         return null;
91 94
     }
92 95
 
@@ -110,8 +113,9 @@  discard block
 block discarded – undo
110 113
     {
111 114
         $returned = [];
112 115
         foreach ($this->items as $item) {
113
-            if ($item->isReturned())
114
-                $returned[] = $item;
116
+            if ($item->isReturned()) {
117
+                            $returned[] = $item;
118
+            }
115 119
         }
116 120
         return $returned;
117 121
     }
Please login to merge, or discard this patch.