for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\Tactician\CommandEvents\Event;
use League\Event\Event;
/**
* Emitted when a command is handled
*/
final class CommandHandled extends Event implements CommandEvent
{
use HasCommand;
* @param object $command
public function __construct($command)
$this->command = $command;
parent::__construct('command.handled');
}