WorkerStopping.php
| 349 B | Satir:
0
| php
Geri
<?php namespace Illuminate\Queue\Events; class WorkerStopping { /** * The exit status. * * @var int */ public $status; /** * Create a new event instance. * * @param int $status * @return void */ public function __construct($status = 0) { $this->status = $status; } }
Kaydet
Ctrl+S ile kaydet