php csfixes

This commit is contained in:
2022-11-02 10:28:52 +01:00
parent dc149c7fd5
commit 1228a0323c
26 changed files with 64 additions and 60 deletions

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -41,7 +41,7 @@ class ByActionNumberAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}

View File

@@ -18,6 +18,7 @@ use Chill\PersonBundle\Entity\Household\HouseholdComposition;
use Chill\PersonBundle\Entity\Household\HouseholdMember;
use Chill\PersonBundle\Export\Declarations;
use Chill\PersonBundle\Repository\Household\HouseholdCompositionTypeRepositoryInterface;
use DateTimeImmutable;
use Doctrine\ORM\Query\Expr\Join;
use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\FormBuilderInterface;
@@ -96,7 +97,7 @@ class ByHouseholdCompositionAggregator implements AggregatorInterface
$builder->add('date_calc', ChillDateType::class, [
'label' => 'export.aggregator.course.by_household_composition.Calc date',
'input_format' => 'datetime_immutable',
'data' => new \DateTimeImmutable('now'),
'data' => new DateTimeImmutable('now'),
]);
}

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -41,7 +41,7 @@ class CreatorJobAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -41,7 +41,7 @@ class ByEndDateAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -41,7 +41,7 @@ class ByMaxDateAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -41,7 +41,7 @@ class ByStartDateAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -14,6 +14,7 @@ namespace Chill\PersonBundle\Export\Aggregator\EvaluationAggregators;
use Chill\MainBundle\Export\AggregatorInterface;
use Chill\PersonBundle\Export\Declarations;
use Doctrine\ORM\QueryBuilder;
use LogicException;
use Symfony\Component\Form\FormBuilderInterface;
class HavingEndDateAggregator implements AggregatorInterface
@@ -45,10 +46,11 @@ class HavingEndDateAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}
switch ($value) {
case true:
return 'enddate is specified';
@@ -57,9 +59,8 @@ class HavingEndDateAggregator implements AggregatorInterface
return 'enddate is not specified';
default:
throw new \LogicException(sprintf('The value %s is not valid', $value));
throw new LogicException(sprintf('The value %s is not valid', $value));
}
};
}

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
/**
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
@@ -14,6 +14,7 @@ namespace Chill\PersonBundle\Export\Aggregator\SocialWorkAggregators;
use Chill\MainBundle\Export\AggregatorInterface;
use Chill\PersonBundle\Export\Declarations;
use Doctrine\ORM\QueryBuilder;
use LogicException;
use Symfony\Component\Form\FormBuilderInterface;
class CurrentActionAggregator implements AggregatorInterface
@@ -27,7 +28,7 @@ class CurrentActionAggregator implements AggregatorInterface
{
$qb
->addSelect('
(CASE true WHEN acpw.startDate IS NULL ELSE false END)
(CASE true WHEN acpw.startDate IS NULL ELSE false END)
AS acpw_current_action_aggregator
')
->addGroupBy('acpw_current_action_aggregator');
@@ -45,10 +46,11 @@ class CurrentActionAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data)
{
return function ($value): string {
return static function ($value): string {
if ('_header' === $value) {
return '';
}
switch ($value) {
case true:
return 'Current action';
@@ -57,7 +59,7 @@ class CurrentActionAggregator implements AggregatorInterface
return 'Not current action';
default:
throw new \LogicException(sprintf('The value %s is not valid', $value));
throw new LogicException(sprintf('The value %s is not valid', $value));
}
};
}

View File

@@ -52,4 +52,4 @@ class CreatorFilter implements FilterInterface
{
return 'Filter by creator';
}
}
}

View File

@@ -52,4 +52,4 @@ class CreatorJobFilter implements FilterInterface
{
return 'Filter by creator job';
}
}
}

View File

@@ -15,6 +15,7 @@ use Chill\MainBundle\Export\FilterInterface;
use Chill\PersonBundle\Export\Declarations;
use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\FormBuilderInterface;
use function in_array;
class HasNoActionFilter implements FilterInterface
{
@@ -51,4 +52,4 @@ class HasNoActionFilter implements FilterInterface
{
return 'Filter by which has no action';
}
}
}

View File

@@ -15,10 +15,10 @@ use Chill\MainBundle\Export\FilterInterface;
use Chill\MainBundle\Form\Type\ChillDateType;
use Chill\PersonBundle\Entity\AccompanyingPeriod\UserHistory;
use Chill\PersonBundle\Export\Declarations;
use DateTime;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\FormBuilderInterface;
use DateTime;
class HasNoReferrerFilter implements FilterInterface
{
@@ -32,12 +32,12 @@ class HasNoReferrerFilter implements FilterInterface
$qb
->andWhere('
NOT EXISTS (
SELECT 1 FROM '. UserHistory::class .' uh
WHERE uh.startDate < :date
SELECT 1 FROM ' . UserHistory::class . ' uh
WHERE uh.startDate < :date
AND (
uh.endDate IS NULL
uh.endDate IS NULL
or uh.endDate > :date
)
)
AND uh.accompanyingPeriod = acp
)
')
@@ -69,4 +69,4 @@ class HasNoReferrerFilter implements FilterInterface
{
return 'Filter by which has no referrer';
}
}
}

View File

@@ -52,4 +52,4 @@ class HasTemporaryLocationFilter implements FilterInterface
{
return 'Filter by temporary location';
}
}
}

View File

@@ -14,10 +14,10 @@ namespace Chill\PersonBundle\Export\Filter\EvaluationFilters;
use Chill\MainBundle\Export\FilterInterface;
use Chill\MainBundle\Form\Type\ChillDateType;
use Chill\PersonBundle\Export\Declarations;
use DateTime;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\FormBuilderInterface;
use DateTime;
class ByEndDateFilter implements FilterInterface
{
@@ -64,4 +64,4 @@ class ByEndDateFilter implements FilterInterface
{
return 'Filter by end date evaluations';
}
}
}

View File

@@ -14,10 +14,10 @@ namespace Chill\PersonBundle\Export\Filter\EvaluationFilters;
use Chill\MainBundle\Export\FilterInterface;
use Chill\MainBundle\Form\Type\ChillDateType;
use Chill\PersonBundle\Export\Declarations;
use DateTime;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\FormBuilderInterface;
use DateTime;
class ByStartDateFilter implements FilterInterface
{
@@ -64,4 +64,4 @@ class ByStartDateFilter implements FilterInterface
{
return 'Filter by start date evaluations';
}
}
}

View File

@@ -47,4 +47,4 @@ class CurrentEvaluationsFilter implements FilterInterface
{
return 'Filter by current evaluations';
}
}
}

View File

@@ -47,4 +47,4 @@ class CurrentActionFilter implements FilterInterface
{
return 'Filter by current actions';
}
}
}