for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GacelaTest\Benchmark\FileCache\ModuleE;
use Gacela\Framework\AbstractFacade;
use Gacela\Framework\DocBlockResolverAwareTrait;
use GacelaTest\Benchmark\FileCache\ModuleE\Infra\EntityManager;
use GacelaTest\Benchmark\FileCache\ModuleE\Infra\Repository;
/**
* @method FactoryE getFactory()
* @method Repository getRepository()
* @method EntityManager getEntityManager()
*/
final class Facade extends AbstractFacade
{
use DocBlockResolverAwareTrait;
public function loadGacelaCacheFile(): array
return [
$this->getFactory()->getArrayConfigAndProvidedDependency(),
$this->getRepository()->getAll(),
$this->getEntityManager()->updateEntity(),
];
}