| 1 | <?php |
||
| 10 | abstract class BaseAdapter implements AdapterInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | protected $nbResults; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var \Netgen\InformationCollection\API\Service\InformationCollection |
||
| 19 | */ |
||
| 20 | protected $informationCollectionService; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * InformationCollectionCollectionListAdapter constructor. |
||
| 24 | * |
||
| 25 | * @param \Netgen\InformationCollection\API\Service\InformationCollection $informationCollectionService |
||
| 26 | */ |
||
| 27 | public function __construct(InformationCollection $informationCollectionService) |
||
| 31 | } |
||
| 32 |