Sindbad~EG File Manager
<?php
namespace Symfony\Config;
require_once __DIR__.\DIRECTORY_SEPARATOR.'Doctrine'.\DIRECTORY_SEPARATOR.'DbalConfig.php';
require_once __DIR__.\DIRECTORY_SEPARATOR.'Doctrine'.\DIRECTORY_SEPARATOR.'OrmConfig.php';
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
/**
* This class is automatically generated to help creating config.
*
* @experimental in 5.3
*/
class DoctrineConfig implements \Symfony\Component\Config\Builder\ConfigBuilderInterface
{
private $dbal;
private $orm;
public function dbal(array $value = []): \Symfony\Config\Doctrine\DbalConfig
{
if (null === $this->dbal) {
$this->dbal = new \Symfony\Config\Doctrine\DbalConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "dbal()" has already been initialized. You cannot pass values the second time you call dbal().');
}
return $this->dbal;
}
public function orm(array $value = []): \Symfony\Config\Doctrine\OrmConfig
{
if (null === $this->orm) {
$this->orm = new \Symfony\Config\Doctrine\OrmConfig($value);
} elseif ([] !== $value) {
throw new InvalidConfigurationException('The node created by "orm()" has already been initialized. You cannot pass values the second time you call orm().');
}
return $this->orm;
}
public function getExtensionAlias(): string
{
return 'doctrine';
}
public function __construct(array $value = [])
{
if (isset($value['dbal'])) {
$this->dbal = new \Symfony\Config\Doctrine\DbalConfig($value['dbal']);
unset($value['dbal']);
}
if (isset($value['orm'])) {
$this->orm = new \Symfony\Config\Doctrine\OrmConfig($value['orm']);
unset($value['orm']);
}
if ([] !== $value) {
throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value)));
}
}
public function toArray(): array
{
$output = [];
if (null !== $this->dbal) {
$output['dbal'] = $this->dbal->toArray();
}
if (null !== $this->orm) {
$output['orm'] = $this->orm->toArray();
}
return $output;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists