| 1 | <?php |
||
| 5 | class ModelWasCleanedUp |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Holds the model class name. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | public $modelClass; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Holds the number of deleted records for the model. |
||
| 16 | * |
||
| 17 | * @var int |
||
| 18 | */ |
||
| 19 | public $numberOfDeletedRecords; |
||
| 20 | |||
| 21 | public function __construct(string $modelClass, int $numberOfDeletedRecords) |
||
| 27 | } |
||
| 28 |