Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.149.120
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
var /
cache /
dev /
Symfony /
Config /
Twig /
Delete
Unzip
Name
Size
Permission
Date
Action
DateConfig.php
2.64
KB
-rw-rw-rw-
2022-12-09 22:56
GlobalConfig.php
2.31
KB
-rw-rw-rw-
2022-12-09 22:56
NumberFormatConfig.php
2.63
KB
-rw-rw-rw-
2022-12-09 22:56
Save
Rename
<?php namespace Symfony\Config\Twig; use Symfony\Component\Config\Loader\ParamConfigurator; use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException; /** * This class is automatically generated to help in creating a config. */ class NumberFormatConfig { private $decimals; private $decimalPoint; private $thousandsSeparator; private $_usedProperties = []; /** * @default 0 * @param ParamConfigurator|int $value * @return $this */ public function decimals($value): self { $this->_usedProperties['decimals'] = true; $this->decimals = $value; return $this; } /** * @default '.' * @param ParamConfigurator|mixed $value * @return $this */ public function decimalPoint($value): self { $this->_usedProperties['decimalPoint'] = true; $this->decimalPoint = $value; return $this; } /** * @default ',' * @param ParamConfigurator|mixed $value * @return $this */ public function thousandsSeparator($value): self { $this->_usedProperties['thousandsSeparator'] = true; $this->thousandsSeparator = $value; return $this; } public function __construct(array $value = []) { if (array_key_exists('decimals', $value)) { $this->_usedProperties['decimals'] = true; $this->decimals = $value['decimals']; unset($value['decimals']); } if (array_key_exists('decimal_point', $value)) { $this->_usedProperties['decimalPoint'] = true; $this->decimalPoint = $value['decimal_point']; unset($value['decimal_point']); } if (array_key_exists('thousands_separator', $value)) { $this->_usedProperties['thousandsSeparator'] = true; $this->thousandsSeparator = $value['thousands_separator']; unset($value['thousands_separator']); } 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 (isset($this->_usedProperties['decimals'])) { $output['decimals'] = $this->decimals; } if (isset($this->_usedProperties['decimalPoint'])) { $output['decimal_point'] = $this->decimalPoint; } if (isset($this->_usedProperties['thousandsSeparator'])) { $output['thousands_separator'] = $this->thousandsSeparator; } return $output; } }