mirror of https://github.com/itflow-org/itflow
29 lines
429 B
PHP
29 lines
429 B
PHP
<?php
|
|
/*
|
|
* File: Event.php
|
|
* Category: Event
|
|
* Author: M. Goldenbaum
|
|
* Created: 25.11.20 22:21
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Events;
|
|
|
|
/**
|
|
* Class Event
|
|
*
|
|
* @package Webklex\PHPIMAP\Events
|
|
*/
|
|
abstract class Event {
|
|
|
|
/**
|
|
* Dispatch the event with the given arguments.
|
|
*/
|
|
public static function dispatch(): Event {
|
|
return new static(func_get_args());
|
|
}
|
|
}
|