@@ -18,7 +18,9 @@ discard block |
||
18 | 18 | |
19 | 19 | function __construct($params=null) { |
20 | 20 | get_instance()->load->splint('francis94c/ci-gmail', '%curl'); |
21 | - if ($params != null) $this->init($params); |
|
21 | + if ($params != null) { |
|
22 | + $this->init($params); |
|
23 | + } |
|
22 | 24 | } |
23 | 25 | |
24 | 26 | /** |
@@ -57,7 +59,9 @@ discard block |
||
57 | 59 | */ |
58 | 60 | public function getAuthorizeUrl(string $scope, string $redirectUri=null, string $responseType='code', string $accessType='offline', bool $prompt=false):string { |
59 | 61 | $redirectUri = $redirectUri ?? $this->redirectUri; |
60 | - if ($scope == null) throw new Exception("GMail scope cannot be null"); |
|
62 | + if ($scope == null) { |
|
63 | + throw new Exception("GMail scope cannot be null"); |
|
64 | + } |
|
61 | 65 | $params = [ |
62 | 66 | 'client_id' => $this->clientId, |
63 | 67 | 'redirect_uri' => $redirectUri, |
@@ -65,7 +69,9 @@ discard block |
||
65 | 69 | 'response_type' => $responseType, |
66 | 70 | 'access_type' => $accessType |
67 | 71 | ]; |
68 | - if ($prompt) $params['prompt'] = 'consent'; |
|
72 | + if ($prompt) { |
|
73 | + $params['prompt'] = 'consent'; |
|
74 | + } |
|
69 | 75 | return self::AUTH_URL . build_url_query($params, false); |
70 | 76 | } |
71 | 77 | /** |
@@ -84,7 +90,9 @@ discard block |
||
84 | 90 | 'grant_type' => 'authorization_code' |
85 | 91 | ], false) |
86 | 92 | ); |
87 | - if ($response !== false)$this->process_response($code, $response); |
|
93 | + if ($response !== false) { |
|
94 | + $this->process_response($code, $response); |
|
95 | + } |
|
88 | 96 | return null; |
89 | 97 | } |
90 | 98 | /** |
@@ -97,7 +105,9 @@ discard block |
||
97 | 105 | self::API . "$user/profile", |
98 | 106 | ["Authorization: Bearer $this->token"] |
99 | 107 | ); |
100 | - if ($response !== false) return $this->process_response($code, $response); |
|
108 | + if ($response !== false) { |
|
109 | + return $this->process_response($code, $response); |
|
110 | + } |
|
101 | 111 | return null; |
102 | 112 | } |
103 | 113 | /** |
@@ -131,7 +141,9 @@ discard block |
||
131 | 141 | ["Authorization: Bearer $this->token"], |
132 | 142 | $body |
133 | 143 | ); |
134 | - if ($response !== false)$this->process_response($code, $response); |
|
144 | + if ($response !== false) { |
|
145 | + $this->process_response($code, $response); |
|
146 | + } |
|
135 | 147 | return null; |
136 | 148 | } |
137 | 149 | /** |