Passed
Push — develop ( 2464a5...909ea9 )
by BENARD
06:29
created
src/Controller/Player/GetRankingCup.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
         $this->playerRankingProvider = $playerRankingProvider;
17 17
     }
18 18
 
19
-     /**
20
-     * @param Request $request
21
-     * @return array
22
-     * @throws ORMException
23
-     */
19
+        /**
20
+         * @param Request $request
21
+         * @return array
22
+         * @throws ORMException
23
+         */
24 24
     public function __invoke(Request $request): array
25 25
     {
26 26
         return $this->playerRankingProvider->getRankingCup(
Please login to merge, or discard this patch.
src/Controller/Player/Game/GetStats.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
         return $playerGames;
34 34
     }
35 35
 
36
-     /**
37
-     * Return data from player with game and platforms
38
-     *
39
-     * @param $player
40
-     * @return array
41
-     */
36
+        /**
37
+         * Return data from player with game and platforms
38
+         *
39
+         * @param $player
40
+         * @return array
41
+         */
42 42
     private function getPlayerGameStats($player): array
43 43
     {
44 44
         $qb = $this->em->createQueryBuilder()
Please login to merge, or discard this patch.
src/Tools/Score.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,6 +145,6 @@
 block discarded – undo
145 145
             $result = $tmpValue . $suffixe . $result;
146 146
         }
147 147
 
148
-        return ($negative ? '-' : '') .  $result;
148
+        return ($negative ? '-' : '') . $result;
149 149
     }
150 150
 }
Please login to merge, or discard this patch.
src/Controller/GetWebsiteStats.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $teamStats = $teamRepository->getStats();
39 39
 
40 40
         return array(
41
-            'nbPlayer' => (int)$playerStats[1],
41
+            'nbPlayer' => (int) $playerStats[1],
42 42
             'nbChart' => (int) $playerStats[2],
43 43
             'nbChartProven' => (int) $playerStats[3],
44 44
             'nbGame' => (int) $gameStats[1],
Please login to merge, or discard this patch.
src/File/Picture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -285,7 +285,7 @@
 block discarded – undo
285 285
     }
286 286
 
287 287
 
288
-    public function getStream($type): bool|string
288
+    public function getStream($type): bool | string
289 289
     {
290 290
         $method = $this->getGererateMethod($type);
291 291
         ob_start();
Please login to merge, or discard this patch.
src/Form/Type/ChartTypeType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             EntityType::class,
21 21
             [
22 22
                     'class' => ChartType::class,
23
-                    'query_builder' => function (EntityRepository $er) {
23
+                    'query_builder' => function(EntityRepository $er) {
24 24
                         return $er->createQueryBuilder('ct')
25 25
                             ->orderBy('ct.name', 'ASC');
26 26
                     },
Please login to merge, or discard this patch.
src/Controller/Badge/GetPicture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         }
37 37
 
38 38
         $stream = $this->appStorage->readStream($path);
39
-        return new StreamedResponse(function () use ($stream) {
39
+        return new StreamedResponse(function() use ($stream) {
40 40
             fpassthru($stream);
41 41
         }, 200, ['Content-Type' => 'image/gif']);
42 42
     }
Please login to merge, or discard this patch.
src/Controller/Game/GetPicture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         }
38 38
 
39 39
         $stream = $this->appStorage->readStream($path);
40
-        return new StreamedResponse(function () use ($stream) {
40
+        return new StreamedResponse(function() use ($stream) {
41 41
             fpassthru($stream);
42 42
         }, 200, ['Content-Type' => 'image/png']);
43 43
     }
Please login to merge, or discard this patch.
src/Controller/Picture/Show.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     public function __invoke(Picture $picture): StreamedResponse
37 37
     {
38 38
         $stream = $this->proofStorage->readStream($picture->getPath());
39
-        return new StreamedResponse(function () use ($stream) {
39
+        return new StreamedResponse(function() use ($stream) {
40 40
             fpassthru($stream);
41 41
             exit();
42 42
         }, 200, ['Content-Type' => $this->getMimeType($picture->getPath())]);
Please login to merge, or discard this patch.