InfluxOW/laravel_ddd_ecommerce

View on GitHub
app/Infrastructure/Abstracts/Events/Event.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Infrastructure\Abstracts\Events;

use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

abstract class Event
{
    use Dispatchable;
    use SerializesModels;
}