Passed
Push — master ( 955384...f3a3f5 )
by Paweł
11:23
created
src/Player/Player.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             return;
66 66
         }
67 67
 
68
-        $playerAscension = $this->talentCollection->findSecretKnowledge()?->getAscension()
68
+        $playerAscension = $this->talentCollection->findSecretKnowledge() ? ->getAscension()
69 69
             ?? throw PlayerException::etherumOverdose();
70 70
 
71 71
         $corruptionBoundary = $this->calculateCorruptionBoundary();
Please login to merge, or discard this patch.
src/Entity/Entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 
97 97
     protected function calculateCorruptionBoundary(): Etherum
98 98
     {
99
-        $ascension = $this->talentCollection->findSecretKnowledge()?->getAscension();
99
+        $ascension = $this->talentCollection->findSecretKnowledge() ? ->getAscension();
100 100
         if ($ascension === null) {
101 101
             return new Etherum(2);
102 102
         }
Please login to merge, or discard this patch.