| 1 | <?php |
||
| 31 | class LastItemsDetails |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @var int |
||
| 35 | */ |
||
| 36 | public $numberOfItems; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | public $lastItemIdentifier; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * LastItemsDetails constructor. |
||
| 45 | * |
||
| 46 | * @param int|null $nrOfItems |
||
| 47 | */ |
||
| 48 | public function __construct($nrOfItems = null) |
||
| 52 | } |
||
| 53 |