mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-10 04:02:28 +01:00
11 lines
121 B
PHP
11 lines
121 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
abstract class Event
|
|
{
|
|
use SerializesModels;
|
|
}
|