@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | private $redirectUri = 'urn:ietf:wg:oauth:2.0:oob'; |
17 | 17 | private $token; |
18 | 18 | |
19 | - function __construct($params=null) { |
|
19 | + function __construct($params = null) { |
|
20 | 20 | get_instance()->load->splint('francis94c/ci-gmail', '%curl'); |
21 | 21 | if ($params != null) $this->init($params); |
22 | 22 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * [getClientId Get Client ID.] |
43 | 43 | * @return null|string Client ID. |
44 | 44 | */ |
45 | - public function getClientId():?string { |
|
45 | + public function getClientId(): ?string { |
|
46 | 46 | return $this->clientId; |
47 | 47 | } |
48 | 48 | /** |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param bool $prompt Add the prompt=consent query to the URL. |
56 | 56 | * @return string Authorize URL |
57 | 57 | */ |
58 | - public function getAuthorizeUrl(string $scope, string $redirectUri=null, string $responseType='code', string $accessType='offline', bool $prompt=false):string { |
|
58 | + public function getAuthorizeUrl(string $scope, string $redirectUri = null, string $responseType = 'code', string $accessType = 'offline', bool $prompt = false):string { |
|
59 | 59 | $redirectUri = $redirectUri ?? $this->redirectUri; |
60 | 60 | if ($scope == null) throw new Exception("GMail scope cannot be null"); |
61 | 61 | $params = [ |
@@ -66,17 +66,17 @@ discard block |
||
66 | 66 | 'access_type' => $accessType |
67 | 67 | ]; |
68 | 68 | if ($prompt) $params['prompt'] = 'consent'; |
69 | - return self::AUTH_URL . build_url_query($params, false); |
|
69 | + return self::AUTH_URL.build_url_query($params, false); |
|
70 | 70 | } |
71 | 71 | /** |
72 | 72 | * [getToken description] |
73 | 73 | * @param string $code [description] |
74 | 74 | * @return [type] [description] |
75 | 75 | */ |
76 | - public function getToken(string $code, string $redirectUri=null):?array { |
|
76 | + public function getToken(string $code, string $redirectUri = null): ?array { |
|
77 | 77 | $redirectUri = $redirectUri ?? $this->redirectUri; |
78 | 78 | list($code, $response) = (new GMailCURL(GMailCURL::POST))( |
79 | - self::TOKEN_URL . build_url_query([ |
|
79 | + self::TOKEN_URL.build_url_query([ |
|
80 | 80 | 'code' => $code, |
81 | 81 | 'client_id' => $this->clientId, |
82 | 82 | 'client_secret' => $this->clientSecret, |
@@ -92,9 +92,9 @@ discard block |
||
92 | 92 | * @param string $user [description] |
93 | 93 | * @return [type] [description] |
94 | 94 | */ |
95 | - public function getProfile(string $user='me'):?array { |
|
95 | + public function getProfile(string $user = 'me'): ?array { |
|
96 | 96 | list($code, $response) = (new GMailCURL(GMailCURL::GET))( |
97 | - self::API . "$user/profile", |
|
97 | + self::API."$user/profile", |
|
98 | 98 | ["Authorization: Bearer $this->token"] |
99 | 99 | ); |
100 | 100 | if ($response !== false) return $this->process_response($code, $response); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | * @param string $labelFilterAction [description] |
113 | 113 | * @return [type] [description] |
114 | 114 | */ |
115 | - public function watch(string $topic, string $userId='me', mixed $labelIds=null, string $labelFilterAction='include'):?array { |
|
115 | + public function watch(string $topic, string $userId = 'me', mixed $labelIds = null, string $labelFilterAction = 'include'): ?array { |
|
116 | 116 | $body = [ |
117 | 117 | 'topicName' => $topic, |
118 | 118 | 'labelFilterAction' => $labelFilterAction |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } |
128 | 128 | |
129 | 129 | list($code, $response) = (new GMailCURL(GMailCURL::POST))( |
130 | - self::API . "$userId/watch", |
|
130 | + self::API."$userId/watch", |
|
131 | 131 | ["Authorization: Bearer $this->token"], |
132 | 132 | $body |
133 | 133 | ); |