DXFeature: ClosingMotiveRepository implements correct interace

This commit is contained in:
2022-09-22 14:01:30 +02:00
parent 4631f04da6
commit 4fe4f6a877
3 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace Chill\PersonBundle\Repository\AccompanyingPeriod;
use Doctrine\Persistence\ObjectRepository;
interface ClosingMotiveRepositoryInterface extends ObjectRepository
{
/**
* @return mixed
*/
public function getActiveClosingMotive(bool $onlyLeaf = true);
}