19 lines
293 B
PHP
19 lines
293 B
PHP
<?php
|
|
|
|
namespace Illuminate\Bus\Events;
|
|
|
|
use Illuminate\Bus\Batch;
|
|
|
|
class BatchFinished
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param \Illuminate\Bus\Batch $batch The batch instance.
|
|
*/
|
|
public function __construct(
|
|
public Batch $batch,
|
|
) {
|
|
}
|
|
}
|