add bill categories

add webdav client

change pdf viewer
This commit is contained in:
Simon Vieille 2023-04-09 17:56:15 +02:00
commit 688fdd49ee
Signed by: deblan
GPG key ID: 579388D585F70417
23 changed files with 648 additions and 38 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace App\Repository;
use App\Core\Repository\RepositoryQuery;
use Knp\Component\Pager\PaginatorInterface;
use App\Repository\BillCategoryRepository as Repository;
class BillCategoryRepositoryQuery extends RepositoryQuery
{
public function __construct(Repository $repository, PaginatorInterface $paginator)
{
parent::__construct($repository, 'b', $paginator);
}
}