fuc-new/vendor/illuminate/database/Events/ModelsPruned.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

34 lines
537 B
PHP
Executable File

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