Completed
Push — master ( ae32ac...b72ee4 )
by Laurens
03:26
created
src/GuzzleIzettleClient.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $url = self::API_AUTHORIZE_USER_LOGIN_URL;
58 58
         $url .= '?response_type=code';
59
-        $url .= '&redirect_uri=' . $redirectUrl;
60
-        $url .= '&client_id=' . $this->clientId;
61
-        $url .= '&scope=' . $apiScope->getUrlParameters();
59
+        $url .= '&redirect_uri='.$redirectUrl;
60
+        $url .= '&client_id='.$this->clientId;
61
+        $url .= '&scope='.$apiScope->getUrlParameters();
62 62
         $url .= '&state=oauth2';
63 63
 
64 64
         return $url;
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         return $this->accessToken;
86 86
     }
87 87
 
88
-    public function refreshAccessToken(?AccessToken $accessToken =  null): AccessToken
88
+    public function refreshAccessToken(?AccessToken $accessToken = null): AccessToken
89 89
     {
90 90
         $accessToken = $accessToken ?? $this->accessToken;
91 91
         $options = [
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
     public function get(string $url, ?array $queryParameters = null): ResponseInterface
106 106
     {
107
-        $options =  array_merge(['headers' => $this->getAuthorizationHeader()], ['query' => $queryParameters]);
107
+        $options = array_merge(['headers' => $this->getAuthorizationHeader()], ['query' => $queryParameters]);
108 108
 
109 109
         try {
110 110
             $response = $this->guzzleClient->get($url, $options);
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             ]
126 126
         );
127 127
 
128
-        $options =  array_merge(['headers' => $headers], ['body' => $postable->getPostBodyData()]);
128
+        $options = array_merge(['headers' => $headers], ['body' => $postable->getPostBodyData()]);
129 129
 
130 130
         return $this->guzzleClient->post($url, $options);
131 131
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             ]
141 141
         );
142 142
 
143
-        $options =  array_merge(['headers' => $headers], ['body' => $jsonData]);
143
+        $options = array_merge(['headers' => $headers], ['body' => $jsonData]);
144 144
 
145 145
         $this->guzzleClient->put($url, $options);
146 146
     }
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -68,13 +68,13 @@
 block discarded – undo
68 68
     public function getAccessTokenFromAuthorizedCode(string $redirectUrl, string $code): AccessToken
69 69
     {
70 70
         $options = [
71
-           'form_params' => [
72
-              'grant_type' => self::API_ACCESS_TOKEN_CODE_GRANT,
73
-              'client_id' => $this->clientId,
74
-              'client_secret' => $this->clientSecret,
75
-              'redirect_uri' => $redirectUrl,
76
-              'code' => $code
77
-           ],
71
+            'form_params' => [
72
+                'grant_type' => self::API_ACCESS_TOKEN_CODE_GRANT,
73
+                'client_id' => $this->clientId,
74
+                'client_secret' => $this->clientSecret,
75
+                'redirect_uri' => $redirectUrl,
76
+                'code' => $code
77
+            ],
78 78
         ];
79 79
 
80 80
         try {
Please login to merge, or discard this patch.
src/Client/ApiScope.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -68,37 +68,37 @@
 block discarded – undo
68 68
     {
69 69
         $scope = [];
70 70
         if ($this->finance !== null) {
71
-            $scope[] = $this->finance->getValue() . ':' . self::FINANCE;
71
+            $scope[] = $this->finance->getValue().':'.self::FINANCE;
72 72
             if ($this->finance->getValue() == Rights::WRITE) {
73
-                $scope[] = Rights::READ . ':' . self::FINANCE;
73
+                $scope[] = Rights::READ.':'.self::FINANCE;
74 74
             }
75 75
         }
76 76
 
77 77
         if ($this->purchase !== null) {
78
-            $scope[] = $this->purchase->getValue() . ':' . self::PURCHASE;
78
+            $scope[] = $this->purchase->getValue().':'.self::PURCHASE;
79 79
             if ($this->purchase->getValue() == Rights::WRITE) {
80
-                $scope[] = Rights::READ . ':' . self::PURCHASE;
80
+                $scope[] = Rights::READ.':'.self::PURCHASE;
81 81
             }
82 82
         }
83 83
 
84 84
         if ($this->product !== null) {
85
-            $scope[] = $this->product->getValue() . ':' . self::PRODUCT;
85
+            $scope[] = $this->product->getValue().':'.self::PRODUCT;
86 86
             if ($this->product->getValue() == Rights::WRITE) {
87
-                $scope[] = Rights::READ . ':' . self::PRODUCT;
87
+                $scope[] = Rights::READ.':'.self::PRODUCT;
88 88
             }
89 89
         }
90 90
 
91 91
         if ($this->inventory !== null) {
92
-            $scope[] = $this->inventory->getValue() . ':' . self::INVENTORY;
92
+            $scope[] = $this->inventory->getValue().':'.self::INVENTORY;
93 93
             if ($this->inventory->getValue() == Rights::WRITE) {
94
-                $scope[] = Rights::READ . ':' . self::INVENTORY;
94
+                $scope[] = Rights::READ.':'.self::INVENTORY;
95 95
             }
96 96
         }
97 97
 
98 98
         if ($this->image !== null) {
99
-            $scope[] = $this->image->getValue() . ':' . self::IMAGE;
99
+            $scope[] = $this->image->getValue().':'.self::IMAGE;
100 100
             if ($this->image->getValue() == Rights::WRITE) {
101
-                $scope[] = Rights::READ . ':' . self::IMAGE;
101
+                $scope[] = Rights::READ.':'.self::IMAGE;
102 102
             }
103 103
         }
104 104
 
Please login to merge, or discard this patch.
src/IzettleClientInterface.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@  discard block
 block discarded – undo
10 10
 interface IzettleClientInterface
11 11
 {
12 12
     const API_BASE_URL = 'https://oauth.izettle.net';
13
-    const API_AUTHORIZE_USER_LOGIN_URL = self::API_BASE_URL . '/authorize';
13
+    const API_AUTHORIZE_USER_LOGIN_URL = self::API_BASE_URL.'/authorize';
14 14
 
15
-    const API_ACCESS_TOKEN_REQUEST_URL = self::API_BASE_URL . '/token';
15
+    const API_ACCESS_TOKEN_REQUEST_URL = self::API_BASE_URL.'/token';
16 16
     const API_ACCESS_TOKEN_PASSWORD_GRANT = 'password';
17 17
     const API_ACCESS_TOKEN_CODE_GRANT = 'authorization_code';
18
-    const API_ACCESS_TOKEN_REFRESH_TOKEN_URL = self::API_BASE_URL . '/token';
18
+    const API_ACCESS_TOKEN_REFRESH_TOKEN_URL = self::API_BASE_URL.'/token';
19 19
     const API_ACCESS_TOKEN_REFRESH_TOKEN_GRANT = 'refresh_token';
20 20
 
21 21
     public function setAccessToken(AccessToken $accessToken): void;
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     public function getAccessTokenFromUserLogin(string $username, string $password): AccessToken;
26 26
 
27
-    public function refreshAccessToken(?AccessToken $accessToken =  null): AccessToken;
27
+    public function refreshAccessToken(?AccessToken $accessToken = null): AccessToken;
28 28
 
29 29
     public function get(string $url, ?array $queryParameters = null): ResponseInterface;
30 30
 
Please login to merge, or discard this patch.