Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
form /
Guess /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
Guess.php
2.84
KB
-rwxrwxr-x
2026-03-13 14:59
TypeGuess.php
1.32
KB
-rwxrwxr-x
2026-03-13 14:59
ValueGuess.php
856
B
-rwxrwxr-x
2026-03-13 14:59
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Guess; /** * Contains a guessed class name and a list of options for creating an instance * of that class. * * @author Bernhard Schussek <bschussek@gmail.com> */ class TypeGuess extends Guess { private string $type; private array $options; /** * @param string $type The guessed field type * @param array $options The options for creating instances of the * guessed class * @param int $confidence The confidence that the guessed class name * is correct */ public function __construct(string $type, array $options, int $confidence) { parent::__construct($confidence); $this->type = $type; $this->options = $options; } /** * Returns the guessed field type. */ public function getType(): string { return $this->type; } /** * Returns the guessed options for creating instances of the guessed type. */ public function getOptions(): array { return $this->options; } }