for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace C4tech\RayEmitter\Event;
use C4tech\RayEmitter\Contracts\Domain\Event as EventInterface;
use C4tech\RayEmitter\Contracts\Event\Collection as CollectionInterface;
use Illuminate\Support\Collection as BaseCollection;
class Collection extends BaseCollection implements CollectionInterface
{
/**
* @inheritDoc
*/
public function append(EventInterface $event)
$this->push($event);
}