diff --git a/module/Application/view/error/404.phtml b/module/Application/view/error/404.phtml
index a5242ed03a56cdc94892eedde98d783dd4ac734a..72f1572f93e3bb86ec4ba453704c9c621b5e5fa8 100644
--- a/module/Application/view/error/404.phtml
+++ b/module/Application/view/error/404.phtml
@@ -27,14 +27,13 @@ if (! empty($this->reason)) :
             $reasonMessage = 'We cannot determine at this time why a 404 was generated.';
             break;
     }
-?>
+    ?>
 
 <p><?= $reasonMessage ?></p>
 
 <?php endif ?>
 
 <?php if (! empty($this->controller)) : ?>
-
 <dl>
     <dt>Controller:</dt>
     <dd><?= $this->escapeHtml($this->controller) ?>
@@ -51,7 +50,6 @@ if (! empty($this->reason)) :
 <?php endif ?>
 
 <?php if (! empty($this->display_exceptions)) : ?>
-
     <?php if (isset($this->exception)
         && ($this->exception instanceof \Throwable || $this->exception instanceof \Exception)) : ?>
 <hr/>
@@ -100,7 +98,6 @@ if (! empty($this->reason)) :
         <?php endif ?>
 
     <?php else : ?>
-
 <h3>No Exception available</h3>
 
     <?php endif ?>
diff --git a/module/Application/view/error/index.phtml b/module/Application/view/error/index.phtml
index 2790d6ed491f7660368846051c91bc20b571c92f..3ac43ad216e8a006e26cac870b1638c56bc33e40 100644
--- a/module/Application/view/error/index.phtml
+++ b/module/Application/view/error/index.phtml
@@ -2,7 +2,6 @@
 <h2><?= $this->message ?></h2>
 
 <?php if (! empty($this->display_exceptions)) : ?>
-
     <?php if (isset($this->exception)
         && ($this->exception instanceof \Throwable || $this->exception instanceof \Exception)) : ?>
 <hr/>
@@ -51,7 +50,6 @@
         <?php endif ?>
 
     <?php else : ?>
-
 <h3>No Exception available</h3>
 
     <?php endif ?>
diff --git a/module/ImportData/config/module.config.php b/module/ImportData/config/module.config.php
index e8a2b8eaab55c97d331b2806cfa819aac9bd1824..965fbb5cbf0beb36147505e9635d17f8d23a9a55 100644
--- a/module/ImportData/config/module.config.php
+++ b/module/ImportData/config/module.config.php
@@ -2576,7 +2576,8 @@ return [
     ],
     'service_manager' => [
         'factories' => [
-            \ImportData\V1\Rest\Version\VersionResource::class => \ImportData\V1\Rest\Version\VersionResourceFactory::class,
+            \ImportData\V1\Rest\Version\VersionResource::class =>
+                \ImportData\V1\Rest\Version\VersionResourceFactory::class,
         ],
     ],
 ];
diff --git a/module/ImportData/src/Module.php b/module/ImportData/src/Module.php
index fb7f4864a47fa2d0a48af62e8b80d1ad125dac02..f5d5debcc5efba797c067a66e73fdc60328af6e2 100644
--- a/module/ImportData/src/Module.php
+++ b/module/ImportData/src/Module.php
@@ -9,5 +9,4 @@ class Module implements ApigilityProviderInterface
     {
         return include __DIR__ . '/../config/module.config.php';
     }
-
 }
diff --git a/module/ImportData/src/V1/Entity/Db/Acteur.php b/module/ImportData/src/V1/Entity/Db/Acteur.php
index daf5f168509321e5f6ac9a03776616e3e78f503c..c567f3f0e67933e0f566a92aba12d78dbe0fe45d 100644
--- a/module/ImportData/src/V1/Entity/Db/Acteur.php
+++ b/module/ImportData/src/V1/Entity/Db/Acteur.php
@@ -214,4 +214,4 @@ class Acteur
     {
         $this->temoinRapport = $temoinRapport;
     }
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Entity/Db/Doctorant.php b/module/ImportData/src/V1/Entity/Db/Doctorant.php
index 1f9c399849a528c5960744f19e48425956e31cd7..0ebaee3e2541e1cb5d2e1b2cd5e8efffa01ff95e 100644
--- a/module/ImportData/src/V1/Entity/Db/Doctorant.php
+++ b/module/ImportData/src/V1/Entity/Db/Doctorant.php
@@ -2,7 +2,6 @@
 
 namespace ImportData\V1\Entity\Db;
 
-
 /**
  * Doctorant
  */
@@ -63,6 +62,4 @@ class Doctorant
     {
         $this->individuId = $individuId;
     }
-
-
 }
diff --git a/module/ImportData/src/V1/Entity/Db/Financement.php b/module/ImportData/src/V1/Entity/Db/Financement.php
index 850881810c7157980c01cb1e79514b0d50b06583..f538ba78a18f3563acaaa9db679d537e7301a49f 100644
--- a/module/ImportData/src/V1/Entity/Db/Financement.php
+++ b/module/ImportData/src/V1/Entity/Db/Financement.php
@@ -88,4 +88,4 @@ class Financement
     {
         return $this->dateFinFinancement;
     }
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Entity/Db/Individu.php b/module/ImportData/src/V1/Entity/Db/Individu.php
index 312ad588c88a827a310eeeca5196adf1790ebbc8..6e3c75a6baa6ae6f51c5de847bdb4495669b49cd 100644
--- a/module/ImportData/src/V1/Entity/Db/Individu.php
+++ b/module/ImportData/src/V1/Entity/Db/Individu.php
@@ -2,7 +2,6 @@
 
 namespace ImportData\V1\Entity\Db;
 
-
 /**
  * These
  */
@@ -230,6 +229,4 @@ class Individu
     {
         $this->nationalite = $nationalite;
     }
-
-
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Entity/Db/OrigineFinancement.php b/module/ImportData/src/V1/Entity/Db/OrigineFinancement.php
index 190ebee58630b3df69aca97242c05a34ec7c1889..20b7d4891e07dc4fb4c40c91b31b867309048afe 100644
--- a/module/ImportData/src/V1/Entity/Db/OrigineFinancement.php
+++ b/module/ImportData/src/V1/Entity/Db/OrigineFinancement.php
@@ -52,4 +52,4 @@ class OrigineFinancement
     {
         return $this->libOfi;
     }
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Entity/Db/Role.php b/module/ImportData/src/V1/Entity/Db/Role.php
index 296990d9d7d77ca9824a8b501a24bcb5ab41e41e..034e6ca0cc291f48ed8a8b872fc3838fcad34c8d 100644
--- a/module/ImportData/src/V1/Entity/Db/Role.php
+++ b/module/ImportData/src/V1/Entity/Db/Role.php
@@ -2,7 +2,6 @@
 
 namespace ImportData\V1\Entity\Db;
 
-
 /**
  * Role
  */
@@ -76,6 +75,4 @@ class Role
     {
         $this->libCourtRole = $libCourtRole;
     }
-
-
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Entity/Db/Source.php b/module/ImportData/src/V1/Entity/Db/Source.php
index 48abfa3d7ac7b7d4b9feb8696c2a8987aa8e1368..cf4c11e0454914de6fcf82af522b5d7dcd924b14 100644
--- a/module/ImportData/src/V1/Entity/Db/Source.php
+++ b/module/ImportData/src/V1/Entity/Db/Source.php
@@ -2,7 +2,6 @@
 
 namespace ImportData\V1\Entity\Db;
 
-
 /**
  * Source
  */
@@ -80,7 +79,4 @@ class Source
     {
         $this->code = $code;
     }
-
-
-
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Entity/Db/These.php b/module/ImportData/src/V1/Entity/Db/These.php
index 4a1ccb77ed0a7236ed8dee3981e9257154bdfd8d..c99c279656c5dea71124179d382f8740bd92588b 100644
--- a/module/ImportData/src/V1/Entity/Db/These.php
+++ b/module/ImportData/src/V1/Entity/Db/These.php
@@ -2,7 +2,6 @@
 
 namespace ImportData\V1\Entity\Db;
 
-
 /**
  * These
  */
@@ -385,6 +384,4 @@ class These
     {
         $this->correctionAutorisee = $correctionAutorisee;
     }
-    
-
 }
diff --git a/module/ImportData/src/V1/Entity/Db/Variable.php b/module/ImportData/src/V1/Entity/Db/Variable.php
index 242aa89337dfc2348a5192ddc42769b805d2e33e..f2874e124aa8be5314a1c159f9760baabfb5cd2d 100644
--- a/module/ImportData/src/V1/Entity/Db/Variable.php
+++ b/module/ImportData/src/V1/Entity/Db/Variable.php
@@ -2,7 +2,6 @@
 
 namespace ImportData\V1\Entity\Db;
 
-
 /**
  * Variable
  */
@@ -131,6 +130,4 @@ class Variable
     {
         $this->sourceId = $sourceId;
     }
-
-
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Query/Provider/FetchAll.php b/module/ImportData/src/V1/Query/Provider/FetchAll.php
index f28ea14f2b2f71fe4db38ac31186131c410cc74e..c2c34340e4d14f9fd8f57c6fb4e0aeebace44e38 100644
--- a/module/ImportData/src/V1/Query/Provider/FetchAll.php
+++ b/module/ImportData/src/V1/Query/Provider/FetchAll.php
@@ -23,4 +23,4 @@ class FetchAll extends DefaultOrm
 
         return $qb;
     }
-}
\ No newline at end of file
+}
diff --git a/module/ImportData/src/V1/Rest/Acteur/ActeurFetchAll.php b/module/ImportData/src/V1/Rest/Acteur/ActeurFetchAll.php
index c1947665753247f4050350e330f1942fb73703ab..27f35d7934726f8b99b6f31873cd5494bcd7f435 100644
--- a/module/ImportData/src/V1/Rest/Acteur/ActeurFetchAll.php
+++ b/module/ImportData/src/V1/Rest/Acteur/ActeurFetchAll.php
@@ -26,4 +26,4 @@ class ActeurFetchAll extends FetchAll
 
         return $qb;
     }
-}
\ No newline at end of file
+}