| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function __construct(array $response) |
||
| 30 | { |
||
| 31 | $this->deviceId = $response['id']; |
||
| 32 | if (isset($response['error'])) { |
||
| 33 | $this->exception = new BulbCommandException( |
||
| 34 | $response['error']['message'], |
||
| 35 | $response['error']['code'], |
||
| 36 | $response['id'] |
||
| 37 | ); |
||
| 38 | } else { |
||
| 39 | $this->result = $response['result']; |
||
| 40 | } |
||
| 41 | } |
||
| 42 | |||
| 75 |