| Conditions | 5 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 5 |
| Changes | 0 | ||
| 1 | <?php |
||
| 70 | 5 | public function init() |
|
| 71 | { |
||
| 72 | 5 | if (!$this->table) { |
|
| 73 | 1 | throw new InvalidConfigException("You must specify table."); |
|
| 74 | } |
||
| 75 | |||
| 76 | 4 | if (!$this->identifier) { |
|
| 77 | 1 | throw new InvalidConfigException("You must specify identifier."); |
|
| 78 | } |
||
| 79 | |||
| 80 | 3 | if (!$this->apns && !$this->gcm) { |
|
| 81 | 1 | throw new InvalidConfigException("At least one of apns or gcm properties must be initialized."); |
|
| 82 | } |
||
| 83 | } |
||
| 84 | } |