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\ModuleWithExternalDependencies\Supplier\Service;
use GacelaTest\Feature\Framework\ModuleWithExternalDependencies\Dependent;
use function sprintf;
final class HelloName
{
public function __construct(
private readonly Dependent\FacadeInterface $dependentFacade,
) {
}
public function greet(string $name): array
return [
sprintf('Hello, %s from Supplier.', $name),
...$this->dependentFacade->greet($name),
];