Merge remote-tracking branch 'origin/master' into homepage/rewrite

This commit is contained in:
2022-01-25 14:28:29 +01:00
191 changed files with 7654 additions and 1887 deletions

View File

@@ -40,7 +40,7 @@ class AccompanyingPeriodWorkEvaluationRepository implements ObjectRepository
}
/**
* @return array|object[]|AccompanyingPeriodWorkEvaluation[]
* @return array|AccompanyingPeriodWorkEvaluation[]
*/
public function findAll(): array
{
@@ -50,8 +50,7 @@ class AccompanyingPeriodWorkEvaluationRepository implements ObjectRepository
/**
* @param int $limit
* @param int $offset
*
* @return array|AccompanyingPeriodWorkEvaluation[]|object[]
* @return array|AccompanyingPeriodWorkEvaluation[]
*/
public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null): array
{

View File

@@ -39,7 +39,7 @@ final class HouseholdACLAwareRepository implements HouseholdACLAwareRepositoryIn
{
$centers = $this->authorizationHelper->getReachableCenters(
$this->security->getUser(),
HouseholdVoter::SHOW
HouseholdVoter::SEE
);
if ([] === $centers) {

View File

@@ -0,0 +1,75 @@
<?php
/**
* 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.
*/
declare(strict_types=1);
namespace Chill\PersonBundle\Repository\Household;
use Chill\PersonBundle\Entity\Household\Household;
use Chill\PersonBundle\Entity\Household\HouseholdComposition;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
class HouseholdCompositionRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(HouseholdComposition::class);
}
public function countByHousehold(Household $household): int
{
return $this->repository->count(['household' => $household]);
}
public function find($id): ?HouseholdComposition
{
return $this->repository->find($id);
}
/**
* @return array|HouseholdComposition[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @param int $limit
* @param int $offset
*
* @return array|object[]|HouseholdComposition[]
*/
public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
/**
* @return array|HouseholdComposition[]|object[]
*/
public function findByHousehold(Household $household, ?array $orderBy = null, ?int $limit = null, ?int $offset = null): array
{
return $this->findBy(['household' => $household], $orderBy, $limit, $offset);
}
public function findOneBy(array $criteria): ?HouseholdComposition
{
return $this->repository->findOneBy($criteria);
}
public function getClassName(): string
{
return HouseholdComposition::class;
}
}

View File

@@ -0,0 +1,69 @@
<?php
/**
* 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.
*/
declare(strict_types=1);
namespace Chill\PersonBundle\Repository\Household;
use Chill\PersonBundle\Entity\Household\HouseholdCompositionType;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
class HouseholdCompositionTypeRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(HouseholdCompositionType::class);
}
public function find($id): ?HouseholdCompositionType
{
return $this->repository->find($id);
}
/**
* @return array|HouseholdCompositionType[]|object[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return array|HouseholdCompositionType[]
*/
public function findAllActive(): array
{
return $this->findBy(['active' => true]);
}
/**
* @param $limit
* @param $offset
*
* @return array|HouseholdCompositionType[]|object[]
*/
public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function findOneBy(array $criteria): ?HouseholdCompositionType
{
return $this->repository->findOneBy($criteria);
}
public function getClassName(): string
{
return HouseholdCompositionType::class;
}
}