Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function __construct(array $options = []) |
||
22 | { |
||
23 | $options = array_merge([ |
||
24 | 'base_url' => 'https://www.googleapis.com/', |
||
25 | 'user_agent' => 'php-youtube-api (https://github.com/Nekland/YoutubeApi)' |
||
26 | ], $options); |
||
27 | |||
28 | parent::__construct($options); |
||
29 | $this->getAuthFactory()->addNamespace('Nekland\\YoutubeApi\\Http\\Auth'); |
||
30 | } |
||
31 | |||
33 |