Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function init() |
||
27 | { |
||
28 | if ($this->projectId === null) { |
||
29 | throw new InvalidConfigException('The "projectId" property must be set.'); |
||
30 | } |
||
31 | |||
32 | if ($this->bucket === null) { |
||
33 | throw new InvalidConfigException('The "bucket" property must be set.'); |
||
34 | } |
||
35 | |||
36 | parent::init(); |
||
37 | } |
||
38 | |||
55 |