for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gacela\Framework;
use Gacela\Framework\Config\ConfigReaderInterface;
abstract class AbstractConfigGacela
{
/**
* @return array<array>|array{
array<array>|array{
7
* type?:string,
* path?:string,
* path_local?:string
* }
*/
public function config(): array
return [];
}
* @return array<string,ConfigReaderInterface>
public function configReaders(): array
* @param array<string,mixed> $globalServices
*
* @return array<class-string,class-string|callable>
public function mappingInterfaces(array $globalServices): array