Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function client() |
||
28 | { |
||
29 | $client = new Google_Client(); |
||
30 | $client->setClientId($this->client_id); |
||
31 | $client->setClientSecret($this->client_secret); |
||
32 | $client->setRedirectUri($this->redirect_uri); |
||
33 | $client->setScopes([$this->scopes]); |
||
34 | $client->setAccessType($this->access_type); |
||
35 | |||
36 | return $client; |
||
37 | } |
||
38 | |||
45 |