firstcommit
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace RocketTheme\Toolbox\Event;
|
||||
|
||||
use RocketTheme\Toolbox\ArrayTraits\ArrayAccess;
|
||||
use RocketTheme\Toolbox\ArrayTraits\Constructor;
|
||||
use RocketTheme\Toolbox\ArrayTraits\Export;
|
||||
use Symfony\Component\EventDispatcher\Event as BaseEvent;
|
||||
|
||||
/**
|
||||
* Implements Symfony Event interface.
|
||||
*
|
||||
* @package RocketTheme\Toolbox\Event
|
||||
* @author RocketTheme
|
||||
* @license MIT
|
||||
*/
|
||||
class Event extends BaseEvent implements \ArrayAccess
|
||||
{
|
||||
use ArrayAccess, Constructor, Export;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $items = array();
|
||||
}
|
||||
Reference in New Issue
Block a user