Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| ExceptionLogged | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Events; |
| 4 | |
| 5 | use App\Models\Log; |
| 6 | use Illuminate\Foundation\Events\Dispatchable; |
| 7 | use Illuminate\Queue\SerializesModels; |
| 8 | |
| 9 | class ExceptionLogged |
| 10 | { |
| 11 | use Dispatchable, SerializesModels; |
| 12 | |
| 13 | public function __construct( |
| 14 | public Log $log |
| 15 | ) { |
| 16 | } |
| 17 | } |