mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
replace fqdn in docstore bundle
This commit is contained in:
parent
f26d50a3a8
commit
27e74014ce
@ -35,7 +35,7 @@ class DocumentCategoryController extends AbstractController
|
|||||||
{
|
{
|
||||||
$em = $this->getDoctrine()->getManager();
|
$em = $this->getDoctrine()->getManager();
|
||||||
$documentCategory = $em
|
$documentCategory = $em
|
||||||
->getRepository('ChillDocStoreBundle:DocumentCategory')
|
->getRepository(\Chill\DocStoreBundle\Entity\DocumentCategory::class)
|
||||||
->findOneBy(
|
->findOneBy(
|
||||||
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
|
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
|
||||||
);
|
);
|
||||||
@ -58,7 +58,7 @@ class DocumentCategoryController extends AbstractController
|
|||||||
{
|
{
|
||||||
$em = $this->getDoctrine()->getManager();
|
$em = $this->getDoctrine()->getManager();
|
||||||
$documentCategory = $em
|
$documentCategory = $em
|
||||||
->getRepository('ChillDocStoreBundle:DocumentCategory')
|
->getRepository(\Chill\DocStoreBundle\Entity\DocumentCategory::class)
|
||||||
->findOneBy(
|
->findOneBy(
|
||||||
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
|
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
|
||||||
);
|
);
|
||||||
@ -138,7 +138,7 @@ class DocumentCategoryController extends AbstractController
|
|||||||
{
|
{
|
||||||
$em = $this->getDoctrine()->getManager();
|
$em = $this->getDoctrine()->getManager();
|
||||||
$documentCategory = $em
|
$documentCategory = $em
|
||||||
->getRepository('ChillDocStoreBundle:DocumentCategory')
|
->getRepository(\Chill\DocStoreBundle\Entity\DocumentCategory::class)
|
||||||
->findOneBy(
|
->findOneBy(
|
||||||
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
|
['bundleId' => $bundleId, 'idInsideBundle' => $idInsideBundle]
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user