From ca56edccf4ad605b5895addd89f5dc7f0ff38dba Mon Sep 17 00:00:00 2001
From: Okhin <okhin@okhin.fr>
Date: Mon, 28 Jan 2019 17:46:47 +0100
Subject: [PATCH] CS-Fix

---
 app/controller/admin.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/controller/admin.php b/app/controller/admin.php
index 8c5f41e..436df33 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'];
                     }
-- 
GitLab