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\UsingCustomSuffixTypes\ModuleB;
use Gacela\Framework\DocBlockResolverAwareTrait;
/**
* @method FacadeModuleB getFacade()
*/
final class CommandModuleB
{
use DocBlockResolverAwareTrait;
public function execute(): array
return $this->getFacade()->doSomething();
}