Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/laminas/laminas-mvc/src/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-mvc/src/InjectApplicationEventInterface.php

<?php

namespace Laminas\Mvc;

use Laminas\EventManager\EventInterface as Event;

interface InjectApplicationEventInterface
{
    /**
     * Compose an Event
     *
     * @return void
     */
    public function setEvent(Event $event);

    /**
     * Retrieve the composed event
     *
     * @return Event
     */
    public function getEvent();
}