diff --git a/app/controller/admin.php b/app/controller/admin.php
index 8c5f41ee90cf386ae6538560ef3c41eea287f3a5..436df332a6e2c9fa9c949f6c06a0e2582ea51709 100644
--- a/app/controller/admin.php
+++ b/app/controller/admin.php
@@ -1418,9 +1418,9 @@ class Admin extends Controller
                             AND d.id='".$transaction."'");
                     $result = $stmt->fetch(\PDO::FETCH_ASSOC);
                     if (!$result) {
-                            if ($testing){
-                                $cumul = rand(50000, 70000);
-                            } else {
+                        if ($testing) {
+                            $cumul = rand(50000, 70000);
+                        } else {
                             // don non trouvé en statut 101. On le crée (la banque à raison)
                             // statut = cumul
                             $f3->get('container')['command_handler']
@@ -1435,7 +1435,7 @@ class Admin extends Controller
                             // Et on le récupère
                             $cumul = $db->lastInsertId();
                             $don = $f3->get('container')['donation_finder']->findById($cumul);
-                            };
+                        };
                     } else {
                         $cumul = $result['id'];
                     }