| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 89 | 3 | protected function validateParams() |
|
| 90 | { |
||
| 91 | 3 | if (empty($this->id)) { |
|
| 92 | 1 | throw WrongData::invalidValuesProvided('ID required to identify a time series dataset.'); |
|
| 93 | } |
||
| 94 | |||
| 95 | 2 | if (empty($this->key)) { |
|
| 96 | 1 | throw WrongData::invalidValuesProvided( |
|
| 97 | 1 | 'Key required to identify data within a dataset. A common example is a symbol such as AAPL.' |
|
| 98 | ); |
||
| 99 | } |
||
| 100 | 1 | } |
|
| 101 | } |
||
| 102 |