Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/theseer/../egulias/.././unicodeveloper/.././nunomaduro/../mews/../maennchen/../voku/../async-aws/./../graham-campbell/../nesbot/../unicodeveloper/../myclabs/../voku/../fruitcake/.././webmozart/../theseer/../guzzlehttp/../guzzlehttp/../composer/../phpunit/../webklex/php-imap/src/Events
الملفات الموجودة في هذا الـ Path:
.
..
Event.php
FlagDeletedEvent.php
FlagNewEvent.php
FolderDeletedEvent.php
FolderMovedEvent.php
FolderNewEvent.php
MessageCopiedEvent.php
MessageDeletedEvent.php
MessageMovedEvent.php
MessageNewEvent.php
MessageRestoredEvent.php

مشاهدة ملف: 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(): Event {
        return new static(func_get_args());
    }
}