| Conditions | 4 |
| Paths | 4 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function init() |
||
| 34 | { |
||
| 35 | if ($this->accountName === null) { |
||
| 36 | throw new InvalidConfigException('The "accountName" property must be set.'); |
||
| 37 | } |
||
| 38 | if ($this->accountKey === null) { |
||
| 39 | throw new InvalidConfigException('The "accountKey" property must be set.'); |
||
| 40 | } |
||
| 41 | if ($this->container === null) { |
||
| 42 | throw new InvalidConfigException('The "container" property must be set.'); |
||
| 43 | } |
||
| 44 | parent::init(); |
||
| 45 | } |
||
| 46 | /** |
||
| 61 |