diff options
| author | Camil Staps | 2016-01-04 15:12:59 +0100 |
|---|---|---|
| committer | Camil Staps | 2016-01-04 15:12:59 +0100 |
| commit | 9c4afbed2310aa0c4679d11b9f568c234d202554 (patch) | |
| tree | 65e8956b671239f2ec38789ce59a4cea9af0ebc2 /app/Events/Event.php | |
Initial commit
Diffstat (limited to 'app/Events/Event.php')
| -rw-r--r-- | app/Events/Event.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Events/Event.php b/app/Events/Event.php new file mode 100644 index 0000000..b8230f0 --- /dev/null +++ b/app/Events/Event.php @@ -0,0 +1,10 @@ +<?php + +namespace App\Events; + +use Illuminate\Queue\SerializesModels; + +abstract class Event +{ + use SerializesModels; +} |
