Completed
Push — master ( 73b08b...9131b2 )
by Laurens
02:28
created
src/Client/AccessToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client;
6 6
 
Please login to merge, or discard this patch.
src/Exception/IzettleApiException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Client/Purchase/ProductBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client\Purchase;
6 6
 
Please login to merge, or discard this patch.
src/Client/Purchase/PurchaseBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client\Purchase;
6 6
 
Please login to merge, or discard this patch.
src/Client/Purchase/VatBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client\Purchase;
6 6
 
Please login to merge, or discard this patch.
src/Client/ApiScope.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client;
6 6
 
@@ -71,19 +71,19 @@  discard block
 block discarded – undo
71 71
     {
72 72
         $scope = [];
73 73
         if (!is_null($this->finance)) {
74
-            $scope[] = self::FINANCE . ':' . $this->finance->getValue();
74
+            $scope[] = self::FINANCE.':'.$this->finance->getValue();
75 75
         }
76 76
         if (!is_null($this->purchase)) {
77
-            $scope[] = self::PURCHASE . ':' . $this->purchase->getValue();
77
+            $scope[] = self::PURCHASE.':'.$this->purchase->getValue();
78 78
         }
79 79
         if (!is_null($this->product)) {
80
-            $scope[] = self::PRODUCT . ':' . $this->product->getValue();
80
+            $scope[] = self::PRODUCT.':'.$this->product->getValue();
81 81
         }
82 82
         if (!is_null($this->inventory)) {
83
-            $scope[] = self::INVENTORY . ':' . $this->inventory->getValue();
83
+            $scope[] = self::INVENTORY.':'.$this->inventory->getValue();
84 84
         }
85 85
         if (!is_null($this->image)) {
86
-            $scope[] = self::IMAGE . ':' . $this->image->getValue();
86
+            $scope[] = self::IMAGE.':'.$this->image->getValue();
87 87
         }
88 88
 
89 89
         return implode(' ', $scope);
Please login to merge, or discard this patch.
src/Client/Exception/AccessTokenExpiredException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Client/Exception/CantCreateProductException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client\Exception;
6 6
 
Please login to merge, or discard this patch.
src/Client/Product/ProductBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace LauLamanApps\IzettleApi\Client\Product;
6 6
 
Please login to merge, or discard this patch.