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 /
Test /
Delete
Unzip
Name
Size
Permission
Date
Action
Traits
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
FormBuilderInterface.php
435
B
-rwxrwxr-x
2026-03-13 14:59
FormIntegrationTestCase.php
1.17
KB
-rwxrwxr-x
2026-03-13 14:59
FormInterface.php
407
B
-rwxrwxr-x
2026-03-13 14:59
FormPerformanceTestCase.php
1.43
KB
-rwxrwxr-x
2026-03-13 14:59
TypeTestCase.php
1.57
KB
-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\Test; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\Form\FormBuilder; use Symfony\Component\Form\Test\Traits\ValidatorExtensionTrait; abstract class TypeTestCase extends FormIntegrationTestCase { /** * @var FormBuilder */ protected $builder; /** * @var EventDispatcherInterface */ protected $dispatcher; protected function setUp(): void { parent::setUp(); if (!isset($this->dispatcher)) { $this->dispatcher = $this->createMock(EventDispatcherInterface::class); } $this->builder = new FormBuilder('', null, $this->dispatcher, $this->factory); } protected function getExtensions() { $extensions = []; if (\in_array(ValidatorExtensionTrait::class, class_uses($this))) { $extensions[] = $this->getValidatorExtension(); } return $extensions; } public static function assertDateTimeEquals(\DateTime $expected, \DateTime $actual) { self::assertEquals($expected->format('c'), $actual->format('c')); } public static function assertDateIntervalEquals(\DateInterval $expected, \DateInterval $actual) { self::assertEquals($expected->format('%RP%yY%mM%dDT%hH%iM%sS'), $actual->format('%RP%yY%mM%dDT%hH%iM%sS')); } }