Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Testing
/
Exceptions
:
ModelPruningStarting.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }