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\UsingMultipleConfig\LocalConfig;
use Gacela\Framework\AbstractConfig;
final class Config extends AbstractConfig
{
public function getArrayConfig(): array
return [
'config-env' => (int) $this->get('config-env'),
'config-php' => (int) $this->get('config-php'),
'override' => (int) $this->get('override'),
'local' => (int) $this->get('local'),
];
}