Passed
Branch master (b8ae27)
by Benjamin
04:22
created
Category
src/Command/RulesLoaderCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     public function __construct(EntityManagerInterface $em)
22 22
     {
23 23
         $this->em = $em;
24
-        $this->rulesDirectory = dirname(__DIR__).'/Resources/datas/rules';
24
+        $this->rulesDirectory = dirname(__DIR__) . '/Resources/datas/rules';
25 25
         parent::__construct();
26 26
     }
27 27
 
Please login to merge, or discard this patch.
src/Entity/Rule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@
 block discarded – undo
244 244
         return (isset($this->injury_table[$value])) ? array(
245 245
             'key_name' => $this->injury_table[$value],
246 246
             'effect' => $this->getInjuryEffect($this->injury_table[$value])
247
-        ) : false ;
247
+        ) : false;
248 248
     }
249 249
 
250 250
     /**
Please login to merge, or discard this patch.
src/Routing/CoreRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function getFileToLoad():string
8 8
     {
9
-        return dirname(__DIR__).'/Resources/config/routing/core.yaml';
9
+        return dirname(__DIR__) . '/Resources/config/routing/core.yaml';
10 10
     }
11 11
     public function getFormat():string
12 12
     {
Please login to merge, or discard this patch.