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\StaticFacade\ModuleB;
use Gacela\Framework\AbstractFactory;
final class Factory extends AbstractFactory
{
public const STR = 'from factory';
public function createString(): string
return self::STR;
}