mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-07 22:18:21 +08:00
14 lines
196 B
PHP
Executable File
14 lines
196 B
PHP
Executable File
<?php
|
|
|
|
namespace service\Event;
|
|
|
|
use service\Event\EventDispatcher;
|
|
use service\Event\Event;
|
|
|
|
class GeneralEventDispatcher extends EventDispatcher {
|
|
|
|
protected $eventHandler = [
|
|
|
|
];
|
|
}
|