Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
form
/
Test
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/form/Test/TestCaseSetUpTearDownTrait.php
<?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 PHPUnit\Framework\TestCase; // Auto-adapt to PHPUnit 8 that added a `void` return-type to the setUp/tearDown methods if ((new \ReflectionMethod(TestCase::class, 'tearDown'))->hasReturnType()) { /** * @internal */ trait TestCaseSetUpTearDownTrait { private function doSetUp(): void { } private function doTearDown(): void { } protected function setUp(): void { $this->doSetUp(); } protected function tearDown(): void { $this->doTearDown(); } } } else { /** * @internal */ trait TestCaseSetUpTearDownTrait { /** * @return void */ private function doSetUp() { } /** * @return void */ private function doTearDown() { } /** * @return void */ protected function setUp() { $this->doSetUp(); } /** * @return void */ protected function tearDown() { $this->doTearDown(); } } }