bootstrap generic doc manager and associated services

This commit is contained in:
2023-05-23 22:12:18 +02:00
parent 977299192f
commit afcd6e0605
10 changed files with 585 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<?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 Chill\DocStoreBundle\GenericDoc;
interface FetchQueryInterface
{
public function getSelectKeyString(): string;
public function getSelectIdentifierJsonB(): string;
/**
* @return list<mixed>
*/
public function getSelectIdentifierParams(): array;
public function getSelectDate(): string;
/**
* @return list<mixed>
*/
public function getSelectDateParams(): array;
public function getFromQuery(): string;
/**
* @return list<mixed>
*/
public function getFromQueryParams(): array;
public function getWhereQuery(): string;
/**
* @return list<mixed>
*/
public function getWhereQueryParams(): array;
}