for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SlayerBirden\DataFlow\Emitter;
use SlayerBirden\DataFlow\EmitterInterface;
class BlackHole implements EmitterInterface
{
public function emit(string $event, ...$args): void
}