Website/items/api/app/Events/Event.php
SPT-dev 1153ac24bf feat: Add items website code base + drone pipeline (#9)
Hello,

I'm adding the whole https://items.sp-tarkov.com code base as well as the drone pipeline to deploy it.
Please **double check *thoroughly* every** to ensure it matches the server architecture and configuration.
2023-03-02 21:35:55 -05:00

11 lines
121 B
PHP

<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
abstract class Event
{
use SerializesModels;
}