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

25 lines
420 B
PHP
Executable File

<?php
namespace Illuminate\Database\Events;
class ModelPruningStarting
{
/**
* The class names of the models that will be pruned.
*
* @var array<class-string>
*/
public $models;
/**
* Create a new event instance.
*
* @param array<class-string> $models
* @return void
*/
public function __construct($models)
{
$this->models = $models;
}
}