| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | 1 | public function __construct(GuzzleResponseInterface $response) |
|
| 47 | { |
||
| 48 | 1 | parent::__construct($response); |
|
| 49 | 1 | $this->count = (int) $this->popField('objectsCount'); |
|
| 50 | 1 | $this->total = (int) $this->popField('totalCount'); |
|
| 51 | 1 | $this->nextCursor = $this->popField('nextCursorId'); |
|
| 52 | 1 | $this->results = (array) $this->popField('results'); |
|
| 53 | 1 | } |
|
| 89 |