for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Async sockets
*
* @copyright Copyright (c) 2015-2017, Efimov Evgenij <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace AsyncSockets\Event;
* Define AbstractEvent as the alias for Symfony event object, so if you have installed
* symfony EventDispatcher component then AbstractEvent will be fully compatible with
* EventDispatcher's event system
if (!class_alias('Symfony\Component\EventDispatcher\Event', 'AsyncSockets\Event\AbstractEvent', true)) {
* Class AbstractEvent
abstract class AbstractEvent
{
}