Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __construct() |
||
17 | { |
||
18 | $config_path = 'dbbackup.storage.disk.googledrive.'; |
||
19 | |||
20 | $this->client_id = config($config_path.'client_id'); |
||
21 | $this->client_secret = config($config_path.'client_secret'); |
||
22 | $this->redirect_uri = config($config_path.'redirect_uri'); |
||
23 | $this->scopes = config($config_path.'scopes'); |
||
24 | $this->access_type = config($config_path.'access_type'); |
||
25 | } |
||
26 | |||
45 |