| 1 | <?php |
||
| 13 | class RemoveResult |
||
| 14 | { |
||
| 15 | /** @var int */ |
||
| 16 | private $deletedCount; |
||
| 17 | /** @var bool */ |
||
| 18 | private $acknowledged; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param int $deletedCount |
||
| 22 | * @param bool $acknowledged |
||
| 23 | */ |
||
| 24 | 24 | public function __construct($deletedCount, $acknowledged) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return int |
||
| 32 | */ |
||
| 33 | public function getDeletedCount() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function isAcknowledged() |
||
| 45 | } |
||
| 46 |