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

17 lines
303 B
PHP

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