25 lines
417 B
PHP
25 lines
417 B
PHP
<?php
|
|
|
|
namespace Illuminate\Database\Events;
|
|
|
|
class ModelPruningFinished
|
|
{
|
|
/**
|
|
* The class names of the models that were 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;
|
|
}
|
|
}
|