for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\Tactician\Handler\MethodNameInflector;
/**
* Handle command by calling the "handle" method.
*/
class HandleInflector implements MethodNameInflector
{
* {@inheritdoc}
public function inflect($command, $commandHandler): string
return 'handle';
}