Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Bus
/
Events
:
BatchDispatched.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\Bus\Events; use Illuminate\Bus\Batch; class BatchDispatched { /** * The batch instance. * * @var \Illuminate\Bus\Batch */ public $batch; /** * Create a new event instance. * * @param \Illuminate\Bus\Batch $batch * @return void */ public function __construct(Batch $batch) { $this->batch = $batch; } }