Symfony Exception

ContextErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(): Only 8192 of 10644 bytes written, possibly out of free disk space

Exception

Symfony\Component\Debug\Exception\ ContextErrorException

  1.             throw UnexpectedValueException::proxyDirectoryNotWritable($this->proxyDirectory);
  2.         }
  3.         $tmpFileName $fileName '.' uniqid(''true);
  4.         file_put_contents($tmpFileName$proxyCode);
  5.         @chmod($tmpFileName0664);
  6.         rename($tmpFileName$fileName);
  7.     }
  8.     /**
ProxyGenerator->generateProxyClass(object(ClassMetadata), '/home/minhydro/e-hydro.hydrocarbures.gouv.cd/var/cache/prod/doctrine/orm/Proxies/__CG__UserBundleEntityTTitreMinier.php') in vendor/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php (line 220)
  1.                     }
  2.                     require $fileName;
  3.                     break;
  4.                 case self::AUTOGENERATE_ALWAYS:
  5.                     $this->proxyGenerator->generateProxyClass($classMetadata$fileName);
  6.                     require $fileName;
  7.                     break;
  8.                 case self::AUTOGENERATE_EVAL:
  9.                     $this->proxyGenerator->generateProxyClass($classMetadatafalse);
AbstractProxyFactory->getProxyDefinition('UserBundle\\Entity\\TTitreMinier') in vendor/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php (line 119)
  1.      */
  2.     public function getProxy($className, array $identifier)
  3.     {
  4.         $definition = isset($this->definitions[$className])
  5.             ? $this->definitions[$className]
  6.             : $this->getProxyDefinition($className);
  7.         $fqcn       $definition->proxyClassName;
  8.         $proxy      = new $fqcn($definition->initializer$definition->cloner);
  9.         foreach ($definition->identifierFields as $idField) {
  10.             if (! isset($identifier[$idField])) {
AbstractProxyFactory->getProxy('UserBundle\\Entity\\TTitreMinier', array('idPermis' => 7)) in vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php (line 2707)
  1.                         default:
  2.                             switch (true) {
  3.                                 // We are negating the condition here. Other cases will assume it is valid!
  4.                                 case ($hints['fetchMode'][$class->name][$field] !== ClassMetadata::FETCH_EAGER):
  5.                                     $newValue $this->em->getProxyFactory()->getProxy($assoc['targetEntity'], $associatedId);
  6.                                     break;
  7.                                 // Deferred eager load only works for single identifier classes
  8.                                 case (isset($hints[self::HINT_DEFEREAGERLOAD]) && ! $targetClass->isIdentifierComposite):
  9.                                     // TODO: Is there a faster approach?
UnitOfWork->createEntity('UserBundle\\Entity\\TBloc', array('idBloc' => 3, 'nom' => 'YEMA - MATAMBAMAKANZ', 'superficie' => '4948', 'natureFluide' => 'Pétrole brut', 'phase' => 'Exploration', 'dateSignature' => object(DateTime), 'anneeProd' => object(DateTime), 'detailBloc' => '', 'id_permis' => 7, 'id_bassin' => 4), array('deferEagerLoad' => true, 'fetchMode' => array('UserBundle\Entity\TBloc' => array('idPermis' => 2)))) in vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php (line 147)
  1.         if (isset($this->_hints[Query::HINT_REFRESH_ENTITY])) {
  2.             $this->registerManaged($this->class$this->_hints[Query::HINT_REFRESH_ENTITY], $data);
  3.         }
  4.         $uow    $this->_em->getUnitOfWork();
  5.         $entity $uow->createEntity($entityName$data$this->_hints);
  6.         $result[] = $entity;
  7.         if (isset($this->_hints[Query::HINT_INTERNAL_ITERATION]) && $this->_hints[Query::HINT_INTERNAL_ITERATION]) {
  8.             $this->_uow->hydrationComplete();
SimpleObjectHydrator->hydrateRowData(array('id_bloc_1' => '3', 'nom_2' => 'YEMA - MATAMBAMAKANZ', 'superficie_3' => '4948', 'nature_fluide_4' => 'Pétrole brut', 'phase_5' => 'Exploration', 'date_signature_6' => '2005-11-16', 'annee_prod_7' => '2022-01-05', 'detail_bloc_8' => '', 'id_permis_9' => '7', 'id_bassin_10' => '4'), array()) in vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php (line 69)
  1.     protected function hydrateAllData()
  2.     {
  3.         $result = array();
  4.         while ($row $this->_stmt->fetch(PDO::FETCH_ASSOC)) {
  5.             $this->hydrateRowData($row$result);
  6.         }
  7.         $this->_em->getUnitOfWork()->triggerEagerLoads();
  8.         return $result;
SimpleObjectHydrator->hydrateAllData() in vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php (line 150)
  1.         $evm $this->_em->getEventManager();
  2.         $evm->addEventListener(array(Events::onClear), $this);
  3.         $this->prepare();
  4.         $result $this->hydrateAllData();
  5.         $this->cleanup();
  6.         return $result;
  7.     }
AbstractHydrator->hydrateAll(object(PDOStatement), object(ResultSetMapping), array('deferEagerLoad' => true)) in vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php (line 888)
  1.         list($params$types) = $this->expandParameters($criteria);
  2.         $stmt $this->conn->executeQuery($sql$params$types);
  3.         $hydrator $this->em->newHydrator(($this->currentPersisterContext->selectJoinSql) ? Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  4.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, array(UnitOfWork::HINT_DEFEREAGERLOAD => true));
  5.     }
  6.     /**
  7.      * {@inheritdoc}
  8.      */
BasicEntityPersister->loadAll(array('idBassin' => object(TBassin)), null, null, null) in vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php (line 181)
  1.      */
  2.     public function findBy(array $criteria, array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
EntityRepository->findBy(array('idBassin' => object(TBassin))) in src/UserBundle/Controller/BlocController.php (line 33)
  1.                 $bassins $this->getDoctrine()->getManager()->getRepository('UserBundle:TBassin')
  2.                         ->findOneBy(array('nom' => $bassin));
  3.                 //
  4.                 $blocs $this->getDoctrine()->getManager()->getRepository('UserBundle:TBloc')
  5.                         ->findBy(array('idBassin' => $bassins));
  6.                 //
  7.                 return $this->render('@User/Pages/Bloc/bloc_search.html.twig', array(
  8.                         'blocs' => $blocs'title_search' => $bassin
  9.                 ));
  10.         }
BlocController->blocAction('Bassin cotier') in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php (line 151)
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response = \call_user_func_array($controller$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
HttpKernel->handleRaw(object(Request), 1) in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php (line 68)
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
HttpKernel->handle(object(Request), 1, true) in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php (line 200)
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app.php (line 19)
  1. //$kernel = new AppCache($kernel);
  2. // When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
  3. //Request::enableHttpMethodParameterOverride();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 09:02:09 request Matched route "list_bloc".
INFO 09:02:09 security Populated the TokenStorage with an anonymous Token.
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
DEBUG 09:02:09 event Notified event "kernel.request" to listener "Symfony\Bundle\AsseticBundle\EventListener\RequestListener::onKernelRequest".
INFO 09:02:09 php User Deprecated: The "Sensio\Bundle\FrameworkExtraBundle\Configuration\Route" annotation is deprecated since version 5.2. Use "Symfony\Component\Routing\Annotation\Route" instead.
DEBUG 09:02:09 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
DEBUG 09:02:09 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RequestDataCollector::onKernelController".
DEBUG 09:02:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
DEBUG 09:02:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
DEBUG 09:02:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
DEBUG 09:02:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
DEBUG 09:02:09 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
DEBUG 09:02:09 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
INFO 09:02:09 php Deprecated: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
INFO 09:02:09 php Deprecated: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
DEBUG 09:02:09 doctrine SELECT t0.id_bassin AS id_bassin_1, t0.nom AS nom_2, t0.longitude AS longitude_3, t0.latitude AS latitude_4, t0.localisation AS localisation_5, t0.Sup_offshore AS Sup_offshore_6, t0.Sup_onshore AS Sup_onshore_7, t0.date_insertion AS date_insertion_8, t0.province AS province_9 FROM t_bassin t0 WHERE t0.nom = ? LIMIT 1
DEBUG 09:02:10 doctrine SELECT t0.id_bloc AS id_bloc_1, t0.nom AS nom_2, t0.superficie AS superficie_3, t0.nature_fluide AS nature_fluide_4, t0.phase AS phase_5, t0.date_signature AS date_signature_6, t0.annee_prod AS annee_prod_7, t0.detail_bloc AS detail_bloc_8, t0.id_permis AS id_permis_9, t0.id_bassin AS id_bassin_10 FROM t_bloc t0 WHERE t0.id_bassin = ?
DEBUG 09:02:10 php Notice: file_put_contents(): write of 2452 bytes failed with errno=122 Disk quota exceeded
CRITICAL 09:02:10 request Uncaught PHP Exception Symfony\Component\Debug\Exception\ContextErrorException: "Warning: file_put_contents(): Only 8192 of 10644 bytes written, possibly out of free disk space" at /home/minhydro/e-hydro.hydrocarbures.gouv.cd/vendor/doctrine/common/lib/Doctrine/Common/Proxy/ProxyGenerator.php line 304
DEBUG 09:02:10 php Notice: fwrite(): write of 320 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 95 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 281 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 297 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 281 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 283 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 279 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 317 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 279 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 287 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 281 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 571 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 305 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 307 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 311 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 319 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 309 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 307 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 345 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 347 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 398 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 398 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 378 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 382 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 653 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 php Notice: fwrite(): write of 659 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
DEBUG 09:02:10 php Notice: fwrite(): write of 281 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 297 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 281 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 283 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 279 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 317 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 279 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 287 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.request" to listener "Symfony\Bundle\AsseticBundle\EventListener\RequestListener::onKernelRequest".
DEBUG 09:02:10 php Notice: fwrite(): write of 281 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
DEBUG 09:02:10 php Notice: fwrite(): write of 305 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RequestDataCollector::onKernelController".
DEBUG 09:02:10 php Notice: fwrite(): write of 307 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
DEBUG 09:02:10 php Notice: fwrite(): write of 311 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
DEBUG 09:02:10 php Notice: fwrite(): write of 319 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
DEBUG 09:02:10 php Notice: fwrite(): write of 309 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
DEBUG 09:02:10 php Notice: fwrite(): write of 307 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
DEBUG 09:02:10 php Notice: fwrite(): write of 345 bytes failed with errno=122 Disk quota exceeded
DEBUG 09:02:10 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
DEBUG 09:02:10 php Notice: fwrite(): write of 347 bytes failed with errno=122 Disk quota exceeded

Stack Trace

ContextErrorException

Symfony\Component\Debug\Exception\ContextErrorException:
Warning: file_put_contents(): Only 8192 of 10644 bytes written, possibly out of free disk space

  at vendor/doctrine/common/lib/Doctrine/Common/Proxy/ProxyGenerator.php:304
  at Doctrine\Common\Proxy\ProxyGenerator->generateProxyClass(object(ClassMetadata), '/home/minhydro/e-hydro.hydrocarbures.gouv.cd/var/cache/prod/doctrine/orm/Proxies/__CG__UserBundleEntityTTitreMinier.php')
     (vendor/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php:220)
  at Doctrine\Common\Proxy\AbstractProxyFactory->getProxyDefinition('UserBundle\\Entity\\TTitreMinier')
     (vendor/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php:119)
  at Doctrine\Common\Proxy\AbstractProxyFactory->getProxy('UserBundle\\Entity\\TTitreMinier', array('idPermis' => 7))
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:2707)
  at Doctrine\ORM\UnitOfWork->createEntity('UserBundle\\Entity\\TBloc', array('idBloc' => 3, 'nom' => 'YEMA - MATAMBAMAKANZ', 'superficie' => '4948', 'natureFluide' => 'Pétrole brut', 'phase' => 'Exploration', 'dateSignature' => object(DateTime), 'anneeProd' => object(DateTime), 'detailBloc' => '', 'id_permis' => 7, 'id_bassin' => 4), array('deferEagerLoad' => true, 'fetchMode' => array('UserBundle\Entity\TBloc' => array('idPermis' => 2))))
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php:147)
  at Doctrine\ORM\Internal\Hydration\SimpleObjectHydrator->hydrateRowData(array('id_bloc_1' => '3', 'nom_2' => 'YEMA - MATAMBAMAKANZ', 'superficie_3' => '4948', 'nature_fluide_4' => 'Pétrole brut', 'phase_5' => 'Exploration', 'date_signature_6' => '2005-11-16', 'annee_prod_7' => '2022-01-05', 'detail_bloc_8' => '', 'id_permis_9' => '7', 'id_bassin_10' => '4'), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php:69)
  at Doctrine\ORM\Internal\Hydration\SimpleObjectHydrator->hydrateAllData()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php:150)
  at Doctrine\ORM\Internal\Hydration\AbstractHydrator->hydrateAll(object(PDOStatement), object(ResultSetMapping), array('deferEagerLoad' => true))
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:888)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array('idBassin' => object(TBassin)), null, null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:181)
  at Doctrine\ORM\EntityRepository->findBy(array('idBassin' => object(TBassin)))
     (src/UserBundle/Controller/BlocController.php:33)
  at UserBundle\Controller\BlocController->blocAction('Bassin cotier')
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:200)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app.php:19)