mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-19 18:37:45 +00:00
19 lines
375 B
PHP
19 lines
375 B
PHP
<?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\Person;
|
|
|
|
use Doctrine\Persistence\ObjectRepository;
|
|
|
|
interface PersonCenterHistoryInterface extends ObjectRepository
|
|
{
|
|
}
|