for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GacelaTest\Benchmark\Framework\ClassResolver\FileCache\ModuleA;
use Gacela\Framework\AbstractFacade;
use Gacela\Framework\DocBlockResolverAwareTrait;
use GacelaTest\Benchmark\Framework\ClassResolver\FileCache\ModuleA\Infrastructure\EntityManager;
use GacelaTest\Benchmark\Framework\ClassResolver\FileCache\ModuleA\Infrastructure\Repository;
/**
* @method FactoryA 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(),
];
}