for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GacelaTest\Feature\Framework\UsingGacelaConfigFn\LocalConfig\Domain;
final class GreeterService
{
private GreeterGeneratorInterface $greeter;
public function __construct(GreeterGeneratorInterface $greeter)
$this->greeter = $greeter;
}
public function generateCompanyAndName(): string
return $this->greeter->company('Gacela');