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\ResolveDifferentProjectNamespaces\src\Main\ModuleA;
use GacelaTest\Feature\Framework\ResolveDifferentProjectNamespaces\vendor\ThirdParty\ModuleA\Factory as ThirdPartyFactory;
use GacelaTest\Fixtures\StringValue;
use GacelaTest\Fixtures\StringValueInterface;
final class Factory extends ThirdPartyFactory
{
public function createStringA1(): StringValueInterface
return new StringValue('Overridden, from src\CompanyA\ModuleA::StringA');
}