for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\Tactician\Handler\CommandNameExtractor;
/**
* Extract the name from the class
*/
class ClassNameExtractor implements CommandNameExtractor
{
* {@inheritdoc}
public function extract($command): string
return get_class($command);
}