Sindbad~EG File Manager
<?php
namespace Symfony\Config\Monolog\HandlerConfig;
use Symfony\Component\Config\Loader\ParamConfigurator;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
/**
* This class is automatically generated to help creating config.
*
* @experimental in 5.3
*/
class MongoConfig
{
private $id;
private $host;
private $port;
private $user;
private $pass;
private $database;
private $collection;
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function id($value): self
{
$this->id = $value;
return $this;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function host($value): self
{
$this->host = $value;
return $this;
}
/**
* @default 27017
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function port($value): self
{
$this->port = $value;
return $this;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function user($value): self
{
$this->user = $value;
return $this;
}
/**
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function pass($value): self
{
$this->pass = $value;
return $this;
}
/**
* @default 'monolog'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function database($value): self
{
$this->database = $value;
return $this;
}
/**
* @default 'logs'
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function collection($value): self
{
$this->collection = $value;
return $this;
}
public function __construct(array $value = [])
{
if (isset($value['id'])) {
$this->id = $value['id'];
unset($value['id']);
}
if (isset($value['host'])) {
$this->host = $value['host'];
unset($value['host']);
}
if (isset($value['port'])) {
$this->port = $value['port'];
unset($value['port']);
}
if (isset($value['user'])) {
$this->user = $value['user'];
unset($value['user']);
}
if (isset($value['pass'])) {
$this->pass = $value['pass'];
unset($value['pass']);
}
if (isset($value['database'])) {
$this->database = $value['database'];
unset($value['database']);
}
if (isset($value['collection'])) {
$this->collection = $value['collection'];
unset($value['collection']);
}
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->id) {
$output['id'] = $this->id;
}
if (null !== $this->host) {
$output['host'] = $this->host;
}
if (null !== $this->port) {
$output['port'] = $this->port;
}
if (null !== $this->user) {
$output['user'] = $this->user;
}
if (null !== $this->pass) {
$output['pass'] = $this->pass;
}
if (null !== $this->database) {
$output['database'] = $this->database;
}
if (null !== $this->collection) {
$output['collection'] = $this->collection;
}
return $output;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists