Passed
Push — master ( e96706...5a7d8c )
by Paweł
02:40
created
src/Player/Player.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             return;
67 67
         }
68 68
 
69
-        $playerAscension = $this->talentCollection->findSecretKnowledge()?->getAscension()
69
+        $playerAscension = $this->talentCollection->findSecretKnowledge() ? ->getAscension()
70 70
             ?? throw PlayerException::etherumOverdose();
71 71
 
72 72
         $corruptionBoundary = $this->calculateCorruptionBoundary();
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
     private function calculateCorruptionBoundary(): Etherum
94 94
     {
95
-        $ascension = $this->talentCollection->findSecretKnowledge()?->getAscension();
95
+        $ascension = $this->talentCollection->findSecretKnowledge() ? ->getAscension();
96 96
         if ($ascension === null) {
97 97
             return new Etherum(2);
98 98
         }
Please login to merge, or discard this patch.