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\BindingInterfacesWithInnerDependencies\Module\Domain\Greeter;
use GacelaTest\Feature\Framework\BindingInterfacesWithInnerDependencies\Module\Domain\GreeterGeneratorInterface;
use RuntimeException;
final class IncorrectCompanyGenerator implements GreeterGeneratorInterface
{
public function company(string $name): string
throw new RuntimeException('Test should fail!');
}