for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace League\Tactician\Handler\Mapping\ClassName;
final class Suffix implements ClassNameInflector
{
private string $suffix;
public function __construct(string $suffix)
$this->suffix = $suffix;
}
public function getClassName(string $commandClassName): string
return $commandClassName . $this->suffix;