for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\Test\Stub\Flow;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\Event\EventData\EventDataCollection;
use Shopware\Core\Framework\Event\FlowEventAware;
use Shopware\Core\Framework\Log\Package;
use Symfony\Contracts\EventDispatcher\Event;
#[Package('core')]
class DummyEvent extends Event implements FlowEventAware
{
public static function getAvailableData(): EventDataCollection
return new EventDataCollection();
}
public function getName(): string
return 'dummy.event';
public function getContext(): Context
return Context::createDefaultContext();