Passed
Branch develop (e4e9af)
by BENARD
05:38
created
src/Controller/StatsController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 class StatsController extends AbstractController
13 13
 {
14
-     protected EntityManagerInterface $em;
14
+        protected EntityManagerInterface $em;
15 15
 
16 16
     public function __construct(EntityManagerInterface $em)
17 17
     {
Please login to merge, or discard this patch.
src/Controller/Admin/GameAdminController.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,8 @@
 block discarded – undo
16 16
 {
17 17
     private GameManager $gameManager;
18 18
 
19
-    public function __construct(GameManager $gameManager) {
19
+    public function __construct(GameManager $gameManager)
20
+    {
20 21
         $this->gameManager = $gameManager;
21 22
     }
22 23
 
Please login to merge, or discard this patch.
src/EventSubscriber/GameSubscriber.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
         $this->teamMasterBadgeHandler->process($event->getGame());
50 50
     }
51 51
 
52
-     /**
53
-     * @param GameEvent $event
54
-     */
52
+        /**
53
+         * @param GameEvent $event
54
+         */
55 55
     public function majGame(GameEvent $event)
56 56
     {
57 57
         $this->gameManager->maj($event->getGame());
Please login to merge, or discard this patch.