proofdb/vendor/illuminate/database/Events/ModelsPruned.php
2026-05-01 23:40:14 +08:00

19 lines
355 B
PHP

<?php
namespace Illuminate\Database\Events;
class ModelsPruned
{
/**
* Create a new event instance.
*
* @param string $model The class name of the model that was pruned.
* @param int $count The number of pruned records.
*/
public function __construct(
public $model,
public $count,
) {
}
}