Composer Version Change

This commit is contained in:
2024-02-05 00:00:23 +08:00
parent 20678a6a0c
commit 6f751ead83
789 changed files with 135417 additions and 18510 deletions
+33
View File
@@ -0,0 +1,33 @@
<?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;
}
}