for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Murtukov\PHPCodeGenerator;
class Qualifier extends DependencyAwareGenerator
{
private string $name;
public function __construct(string $className)
$this->name = $this->resolveQualifier($className);
}
public static function new(string $className)
return new static($className);
public function generate(): string
return $this->name;