php cs fixes

This commit is contained in:
Julie Lenaerts 2023-12-18 17:05:18 +01:00
parent f103b228e4
commit 469e379166

View File

@ -1,5 +1,14 @@
<?php <?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Export\Filter\PersonFilters; namespace Export\Filter\PersonFilters;
use Chill\MainBundle\Service\RollingDate\RollingDate; use Chill\MainBundle\Service\RollingDate\RollingDate;
@ -8,6 +17,11 @@ use Chill\PersonBundle\Entity\Person;
use Chill\PersonBundle\Export\Filter\PersonFilters\WithParticipationBetweenDatesFilter; use Chill\PersonBundle\Export\Filter\PersonFilters\WithParticipationBetweenDatesFilter;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
/**
* @internal
*
* @coversNothing
*/
final class WithParticipationBetweenDatesFilterTest extends AbstractFilterTest final class WithParticipationBetweenDatesFilterTest extends AbstractFilterTest
{ {
private WithParticipationBetweenDatesFilter $filter; private WithParticipationBetweenDatesFilter $filter;
@ -19,17 +33,11 @@ final class WithParticipationBetweenDatesFilterTest extends AbstractFilterTest
$this->filter = self::$container->get(WithParticipationBetweenDatesFilter::class); $this->filter = self::$container->get(WithParticipationBetweenDatesFilter::class);
} }
/**
* @inheritDoc
*/
public function getFilter() public function getFilter()
{ {
return $this->filter; return $this->filter;
} }
/**
* @inheritDoc
*/
public function getFormData() public function getFormData()
{ {
return [ return [
@ -40,9 +48,6 @@ final class WithParticipationBetweenDatesFilterTest extends AbstractFilterTest
]; ];
} }
/**
* @inheritDoc
*/
public function getQueryBuilders() public function getQueryBuilders()
{ {
self::bootKernel(); self::bootKernel();