ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/webklex/php-imap/src/Events/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/webklex/php-imap/src/Events/Event.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() { return new static(func_get_args()); } }