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\ModuleWithoutDependencies\WithPrefix;
use Gacela\Framework\AbstractFacade;
/**
* @method WithPrefixFactory getFactory()
*/
final class WithPrefixFacade extends AbstractFacade implements WithPrefixFacadeInterface
{
public function greet(string $name): array
return $this->getFactory()
->createServiceA()
->greet($name);
}