Passed
Branch develop (5d255a)
by BENARD
05:18
created
src/EventListener/Entity/GroupListener.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
         }
21 21
     }
22 22
 
23
-     /**
24
-     * @param Group       $group
25
-     * @param PreUpdateEventArgs $event
26
-     */
23
+        /**
24
+         * @param Group       $group
25
+         * @param PreUpdateEventArgs $event
26
+         */
27 27
     public function preUpdate(Group $group, PreUpdateEventArgs $event)
28 28
     {
29 29
         if (null === $group->getLibGroupFr()) {
Please login to merge, or discard this patch.
src/Command/ScoreInvestigationUpdate.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 ScoreInvestigationHandler $scoreInvestigationHandler;
18 18
 
19
-    public function __construct(ScoreInvestigationHandler $scoreInvestigationHandler) {
19
+    public function __construct(ScoreInvestigationHandler $scoreInvestigationHandler)
20
+    {
20 21
         $this->scoreInvestigationHandler = $scoreInvestigationHandler;
21 22
         parent::__construct();
22 23
     }
Please login to merge, or discard this patch.
src/File/Picture.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
      */
34 34
     public function __construct($width, $height, bool $trueColor = true)
35 35
     {
36
-        $width = (int)$width;
37
-        $height = (int)$height;
36
+        $width = (int) $width;
37
+        $height = (int) $height;
38 38
 
39 39
         if ($trueColor) {
40 40
             $this->picture = imagecreatetruecolor($width, $height);
Please login to merge, or discard this patch.