init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user