Passed
Push — master ( 7a48d2...d0f71f )
by Jakub
12:49
created
tests/HeroesofAbenez/Combat/RandomSuccessCalculatorTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     private function generateCharacter(int $id): Character
24 24
     {
25 25
         $stats = [
26
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
26
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
27 27
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
28 28
         ];
29 29
         return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/InitiativeFormulaParserTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     private function generateCharacter(int $id): Character
17 17
     {
18 18
         $stats = [
19
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d4+DEX/4", "strength" => 10,
19
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d4+DEX/4", "strength" => 10,
20 20
             "dexterity" => 12, "constitution" => 10, "intelligence" => 10, "charisma" => 10
21 21
         ];
22 22
         return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/TeamTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     private function generateCharacter(int $id): Character
17 17
     {
18 18
         $stats = [
19
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
19
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
20 20
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
21 21
         ];
22 22
         return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/CharacterEffectTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     private function generateCharacter(int $id): Character
17 17
     {
18 18
         $stats = [
19
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
19
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
20 20
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
21 21
         ];
22 22
         return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/CombatBaseTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     private function generateCharacter(int $id): Character
26 26
     {
27 27
         $stats = [
28
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
28
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
29 29
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
30 30
         ];
31 31
         $petStats = [
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/CombatActions/HealTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     private function generateCharacter(int $id): Character
32 32
     {
33 33
         $stats = [
34
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
34
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
35 35
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
36 36
         ];
37 37
         return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/CombatActions/SkillAttackTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     private function generateCharacter(int $id): Character
33 33
     {
34 34
         $stats = [
35
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
35
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
36 36
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
37 37
         ];
38 38
         $skillData = [
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/CombatActions/SkillSpecialTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     private function generateCharacter(int $id): Character
33 33
     {
34 34
         $stats = [
35
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
35
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
36 36
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
37 37
         ];
38 38
         $skillData = [
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/CombatActions/AttackTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     private function generateCharacter(int $id): Character
31 31
     {
32 32
         $stats = [
33
-            "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
33
+            "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
34 34
             "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
35 35
         ];
36 36
         return new Character($stats);
Please login to merge, or discard this patch.