for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gica\Cqrs\CodeGeneration\Traits;
use Gica\CodeAnalysis\MethodListenerDiscovery\MapCodeGenerator\GroupedByEventMapCodeGenerator;
use Gica\Cqrs\CodeGeneration\CodeGenerator;
trait GroupedByEventTrait
{
use MapCodeGeneratorTrait;
protected function getGenerator(): CodeGenerator
return new CodeGenerator(
new GroupedByEventMapCodeGenerator(),
$this->fileSystem
);
}