replace fqdn in docstore bundle

This commit is contained in:
Julien Fastré 2022-04-30 00:48:38 +02:00
parent f26d50a3a8
commit 27e74014ce

View File

@ -35,7 +35,7 @@ class DocumentCategoryController extends AbstractController
{
$em = $this->getDoctrine()->getManager();
$documentCategory = $em
->getRepository('ChillDocStoreBundle:DocumentCategory')
->getRepository(\Chill\DocStoreBundle\Entity\DocumentCategory::class)
->findOneBy(
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
);
@ -58,7 +58,7 @@ class DocumentCategoryController extends AbstractController
{
$em = $this->getDoctrine()->getManager();
$documentCategory = $em
->getRepository('ChillDocStoreBundle:DocumentCategory')
->getRepository(\Chill\DocStoreBundle\Entity\DocumentCategory::class)
->findOneBy(
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
);
@ -138,7 +138,7 @@ class DocumentCategoryController extends AbstractController
{
$em = $this->getDoctrine()->getManager();
$documentCategory = $em
->getRepository('ChillDocStoreBundle:DocumentCategory')
->getRepository(\Chill\DocStoreBundle\Entity\DocumentCategory::class)
->findOneBy(
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
);