1 | <?php namespace OutlookRestClient\Facade\Responses; |
||
19 | abstract class AbstractCollectionResponse extends AbstractResponse |
||
20 | { |
||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $entries; |
||
25 | |||
26 | public function __construct($body) |
||
33 | |||
34 | /** |
||
35 | * @param string $body |
||
36 | * @return AbstractResponse |
||
37 | */ |
||
38 | abstract protected function buildSingleResponse($body); |
||
39 | |||
40 | /** |
||
41 | * @return AbstractResponse[] |
||
42 | */ |
||
43 | public function getEntries(){ |
||
46 | } |