Passed
Push — master ( 2d3750...a92485 )
by Luiz Kim
04:02 queued 01:32
created
src/Service/ConfigService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@
 block discarded – undo
26 26
     public function getConfig(People $people, $key, $json = false)
27 27
     {
28 28
         $config = $this->discoveryConfig($people, $key, false);
29
-        $value =  $config ? $config->getConfigValue() : null;
29
+        $value = $config ? $config->getConfigValue() : null;
30 30
         return $json ? json_decode($value, true) : $value;
31 31
     }
32 32
 
33 33
     private function discoveryConfig(People $people, $key, $create = true): ?Config
34 34
     {
35
-        $config =   $this->manager->getRepository(Config::class)->findOneBy([
35
+        $config = $this->manager->getRepository(Config::class)->findOneBy([
36 36
             'people' => $people,
37 37
             'configKey' => $key
38 38
         ]);
Please login to merge, or discard this patch.