Passed
Push — master ( 945dc8...ec757f )
by Mike
02:50
created
src/Exception/SDKException.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     protected $default_message = 'Unknown SDK Exception occurred.';
11 11
 
12
-    public function __construct($message = '') {
12
+    public function __construct($message = ''){
13 13
         if (empty($message)){
14 14
             $message = $this->default_message;
15 15
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     protected $default_message = 'Unknown SDK Exception occurred.';
11 11
 
12
-    public function __construct($message = '') {
12
+    public function __construct($message = ''){
13 13
         if (empty($message)){
14 14
             $message = $this->default_message;
15 15
         }
Please login to merge, or discard this patch.
src/Client/Abstracts/AbstractClient.php 2 patches
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     protected $entryPoints = array();
90 90
 
91
-    public function __construct($server = '',array $credentials = array()){
91
+    public function __construct($server = '', array $credentials = array()){
92 92
         $server = (empty($server)?$this->server:$server);
93 93
         $this->setServer($server);
94 94
         $credentials = (empty($credentials)?$this->credentials:$credentials);
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * @inheritdoc
101 101
      * @param string $server
102 102
      */
103
-    public function setServer($server) {
103
+    public function setServer($server){
104 104
         $this->server = $server;
105 105
         $this->apiURL = Helpers::configureAPIURL($this->server);
106 106
         return $this;
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     /**
110 110
      * @inheritdoc
111 111
      */
112
-    public function getAPIUrl() {
112
+    public function getAPIUrl(){
113 113
         return $this->apiURL;
114 114
     }
115 115
 
@@ -119,9 +119,9 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function setCredentials(array $credentials){
121 121
         $this->credentials = $credentials;
122
-        if (isset($this->credentials['client_id'])) {
122
+        if (isset($this->credentials['client_id'])){
123 123
             $token = static::getStoredToken($this->credentials['client_id']);
124
-            if (!empty($token)) {
124
+            if (!empty($token)){
125 125
                 $this->setToken($token);
126 126
             }
127 127
         }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * @inheritdoc
156 156
      */
157
-    public function getServer() {
157
+    public function getServer(){
158 158
         return $this->server;
159 159
     }
160 160
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      * @inheritdoc
163 163
      */
164 164
     public function authenticated(){
165
-        return time() < $this->expiration;
165
+        return time()<$this->expiration;
166 166
     }
167 167
 
168 168
     /**
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function registerEntryPoint($funcName, $className){
186 186
         $implements = class_implements($className);
187
-        if (is_array($implements) && in_array('SugarAPI\SDK\EntryPoint\Interfaces\EPInterface',$implements)){
187
+        if (is_array($implements) && in_array('SugarAPI\SDK\EntryPoint\Interfaces\EPInterface', $implements)){
188 188
             $this->entryPoints[$funcName] = $className;
189 189
         }else{
190
-            throw new EntryPointException($className,'Class must extend SugarAPI\SDK\EntryPoint\Interfaces\EPInterface');
190
+            throw new EntryPointException($className, 'Class must extend SugarAPI\SDK\EntryPoint\Interfaces\EPInterface');
191 191
         }
192 192
         return $this;
193 193
     }
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             }
210 210
             return $EntryPoint;
211 211
         }else{
212
-            throw new EntryPointException($name,'Unregistered EntryPoint');
212
+            throw new EntryPointException($name, 'Unregistered EntryPoint');
213 213
         }
214 214
     }
215 215
 
@@ -217,16 +217,16 @@  discard block
 block discarded – undo
217 217
      * @inheritdoc
218 218
      * @throws AuthenticationException - When Login request fails
219 219
      */
220
-    public function login() {
221
-        if (!empty($this->credentials)) {
220
+    public function login(){
221
+        if (!empty($this->credentials)){
222 222
             $response = $this->oauth2Token()->execute($this->credentials)->getResponse();
223
-            if ($response->getStatus() == '200') {
223
+            if ($response->getStatus()=='200'){
224 224
                 $this->setToken($response->getBody(FALSE));
225 225
                 static::storeToken($this->token, $this->credentials['client_id']);
226 226
                 return TRUE;
227
-            } else {
227
+            }else{
228 228
                 $error = $response->getBody();
229
-                throw new AuthenticationException("Login Response [" . $error['error'] . "] " . $error['error_message']);
229
+                throw new AuthenticationException("Login Response [".$error['error']."] ".$error['error_message']);
230 230
             }
231 231
         }
232 232
         return FALSE;
@@ -237,22 +237,22 @@  discard block
 block discarded – undo
237 237
      * @throws AuthenticationException - When Refresh Request fails
238 238
      */
239 239
     public function refreshToken(){
240
-        if (isset($this->credentials['client_id'])&&
241
-            isset($this->credentials['client_secret'])&&
242
-            isset($this->token)) {
240
+        if (isset($this->credentials['client_id']) &&
241
+            isset($this->credentials['client_secret']) &&
242
+            isset($this->token)){
243 243
             $refreshOptions = array(
244 244
                 'client_id' => $this->credentials['client_id'],
245 245
                 'client_secret' => $this->credentials['client_secret'],
246 246
                 'refresh_token' => $this->token->refresh_token
247 247
             );
248 248
             $response = $this->oauth2Refresh()->execute($refreshOptions)->getResponse();
249
-            if ($response->getStatus() == '200') {
249
+            if ($response->getStatus()=='200'){
250 250
                 $this->setToken($response->getBody(FALSE));
251 251
                 static::storeToken($this->token, $this->credentials['client_id']);
252 252
                 return TRUE;
253
-            } else {
253
+            }else{
254 254
                 $error = $response->getBody();
255
-                throw new AuthenticationException("Refresh Response [" . $error['error'] . "] " . $error['error_message']);
255
+                throw new AuthenticationException("Refresh Response [".$error['error']."] ".$error['error_message']);
256 256
             }
257 257
         }
258 258
         return FALSE;
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
      * @inheritdoc
282 282
      * @param \stdClass $token
283 283
      */
284
-    public static function storeToken($token, $client_id) {
284
+    public static function storeToken($token, $client_id){
285 285
         static::$_STORED_TOKENS[$client_id] = $token;
286 286
         return TRUE;
287 287
     }
@@ -289,14 +289,14 @@  discard block
 block discarded – undo
289 289
     /**
290 290
      * @inheritdoc
291 291
      */
292
-    public static function getStoredToken($client_id) {
292
+    public static function getStoredToken($client_id){
293 293
         return (isset(static::$_STORED_TOKENS[$client_id])?static::$_STORED_TOKENS[$client_id]:NULL);
294 294
     }
295 295
 
296 296
     /**
297 297
      * @inheritdoc
298 298
      */
299
-    public static function removeStoredToken($client_id) {
299
+    public static function removeStoredToken($client_id){
300 300
         unset(static::$_STORED_TOKENS[$client_id]);
301 301
         return TRUE;
302 302
     }
Please login to merge, or discard this patch.
Braces   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * @inheritdoc
101 101
      * @param string $server
102 102
      */
103
-    public function setServer($server) {
103
+    public function setServer($server){
104 104
         $this->server = $server;
105 105
         $this->apiURL = Helpers::configureAPIURL($this->server);
106 106
         return $this;
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     /**
110 110
      * @inheritdoc
111 111
      */
112
-    public function getAPIUrl() {
112
+    public function getAPIUrl(){
113 113
         return $this->apiURL;
114 114
     }
115 115
 
@@ -119,9 +119,9 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function setCredentials(array $credentials){
121 121
         $this->credentials = $credentials;
122
-        if (isset($this->credentials['client_id'])) {
122
+        if (isset($this->credentials['client_id'])){
123 123
             $token = static::getStoredToken($this->credentials['client_id']);
124
-            if (!empty($token)) {
124
+            if (!empty($token)){
125 125
                 $this->setToken($token);
126 126
             }
127 127
         }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * @inheritdoc
156 156
      */
157
-    public function getServer() {
157
+    public function getServer(){
158 158
         return $this->server;
159 159
     }
160 160
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $implements = class_implements($className);
187 187
         if (is_array($implements) && in_array('SugarAPI\SDK\EntryPoint\Interfaces\EPInterface',$implements)){
188 188
             $this->entryPoints[$funcName] = $className;
189
-        }else{
189
+        } else{
190 190
             throw new EntryPointException($className,'Class must extend SugarAPI\SDK\EntryPoint\Interfaces\EPInterface');
191 191
         }
192 192
         return $this;
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
                 $EntryPoint->setAuth($this->token->access_token);
209 209
             }
210 210
             return $EntryPoint;
211
-        }else{
211
+        } else{
212 212
             throw new EntryPointException($name,'Unregistered EntryPoint');
213 213
         }
214 214
     }
@@ -217,14 +217,14 @@  discard block
 block discarded – undo
217 217
      * @inheritdoc
218 218
      * @throws AuthenticationException - When Login request fails
219 219
      */
220
-    public function login() {
221
-        if (!empty($this->credentials)) {
220
+    public function login(){
221
+        if (!empty($this->credentials)){
222 222
             $response = $this->oauth2Token()->execute($this->credentials)->getResponse();
223
-            if ($response->getStatus() == '200') {
223
+            if ($response->getStatus() == '200'){
224 224
                 $this->setToken($response->getBody(FALSE));
225 225
                 static::storeToken($this->token, $this->credentials['client_id']);
226 226
                 return TRUE;
227
-            } else {
227
+            } else{
228 228
                 $error = $response->getBody();
229 229
                 throw new AuthenticationException("Login Response [" . $error['error'] . "] " . $error['error_message']);
230 230
             }
@@ -239,18 +239,18 @@  discard block
 block discarded – undo
239 239
     public function refreshToken(){
240 240
         if (isset($this->credentials['client_id'])&&
241 241
             isset($this->credentials['client_secret'])&&
242
-            isset($this->token)) {
242
+            isset($this->token)){
243 243
             $refreshOptions = array(
244 244
                 'client_id' => $this->credentials['client_id'],
245 245
                 'client_secret' => $this->credentials['client_secret'],
246 246
                 'refresh_token' => $this->token->refresh_token
247 247
             );
248 248
             $response = $this->oauth2Refresh()->execute($refreshOptions)->getResponse();
249
-            if ($response->getStatus() == '200') {
249
+            if ($response->getStatus() == '200'){
250 250
                 $this->setToken($response->getBody(FALSE));
251 251
                 static::storeToken($this->token, $this->credentials['client_id']);
252 252
                 return TRUE;
253
-            } else {
253
+            } else{
254 254
                 $error = $response->getBody();
255 255
                 throw new AuthenticationException("Refresh Response [" . $error['error'] . "] " . $error['error_message']);
256 256
             }
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                 unset($this->token);
270 270
                 static::removeStoredToken($this->credentials['client_id']);
271 271
                 return TRUE;
272
-            }else{
272
+            } else{
273 273
                 $error = $response->getBody();
274 274
                 throw new AuthenticationException("Logout Response [".$error['error']."] ".$error['message']);
275 275
             }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
      * @inheritdoc
282 282
      * @param \stdClass $token
283 283
      */
284
-    public static function storeToken($token, $client_id) {
284
+    public static function storeToken($token, $client_id){
285 285
         static::$_STORED_TOKENS[$client_id] = $token;
286 286
         return TRUE;
287 287
     }
@@ -289,14 +289,14 @@  discard block
 block discarded – undo
289 289
     /**
290 290
      * @inheritdoc
291 291
      */
292
-    public static function getStoredToken($client_id) {
292
+    public static function getStoredToken($client_id){
293 293
         return (isset(static::$_STORED_TOKENS[$client_id])?static::$_STORED_TOKENS[$client_id]:NULL);
294 294
     }
295 295
 
296 296
     /**
297 297
      * @inheritdoc
298 298
      */
299
-    public static function removeStoredToken($client_id) {
299
+    public static function removeStoredToken($client_id){
300 300
         unset(static::$_STORED_TOKENS[$client_id]);
301 301
         return TRUE;
302 302
     }
Please login to merge, or discard this patch.