mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
15 lines
201 B
PHP
15 lines
201 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
class DatabaseSeederBeforeDelete
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct() {}
|
|
}
|