Completed
Push — master ( 220136...171c36 )
by Jakub
03:07
created
src/Team.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,11 +77,11 @@
 block discarded – undo
77 77
    */
78 78
   public function setCharacterPosition($id, int $row, int $column): void {
79 79
     if(!$this->hasItems(["id" => $id])) {
80
-      throw new \OutOfBoundsException("Character $id is not in the team");
80
+      throw new \OutOfBoundsException("character $id is not in the team");
81 81
     } elseif(count($this->getItems(["positionRow" => $row])) >= $this->maxRowSize) {
82
-      throw new InvalidCharacterPositionException("Row $row is full.", InvalidCharacterPositionException::ROW_FULL);
82
+      throw new InvalidCharacterPositionException("row $row is full.", InvalidCharacterPositionException::ROW_FULL);
83 83
     } elseif($this->hasItems(["positionRow" => $row, "positionColumn" => $column])) {
84
-      throw new InvalidCharacterPositionException("Row $row column $column is occupied.", InvalidCharacterPositionException::POSITION_OCCUPIED);
84
+      throw new InvalidCharacterPositionException("row $row column $column is occupied.", InvalidCharacterPositionException::POSITION_OCCUPIED);
85 85
     }
86 86
     $character = $this->getItems(["id" => $id])[0];
87 87
     $character->positionRow = $row;
Please login to merge, or discard this patch.
src/TextCombatLogRender.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
    */
76 76
   public function setTemplate(string $template): void {
77 77
     if(!is_file($template)) {
78
-      throw new \RuntimeException("File $template does not exist.");
78
+      throw new \RuntimeException("file $template does not exist.");
79 79
     }
80 80
     $this->template = $template;
81 81
   }
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 declare(strict_types=1);
3 3
 
4 4
 require __DIR__ . "/../vendor/autoload.php";
5
-Testbench\Bootstrap::setup(__DIR__ . '/_temp', function (\Nette\Configurator $configurator) {
5
+Testbench\Bootstrap::setup(__DIR__ . '/_temp', function(\Nette\Configurator $configurator) {
6 6
   $configurator->addParameters(["appDir" => __DIR__, ]);
7 7
   $configurator->addConfig(__DIR__ . "/tests.neon");
8 8
 });
Please login to merge, or discard this patch.
src/CombatActions/Heal.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,8 +26,10 @@
 block discarded – undo
26 26
     return (in_array($character, $this->findHealers($combat)->toArray(), true) && $this->selectHealingTarget($character, $combat) !== null);
27 27
   }
28 28
 
29
-  public function do(CombatBase $combat, Character $character): void {
29
+  public function do {
30
+    (CombatBase $combat, Character $character): void {
30 31
     $result = [];
32
+  }
31 33
     /** @var Character $patient */
32 34
     $patient = $this->selectHealingTarget($character, $combat);
33 35
     $result["result"] = $combat->successCalculator->hasHealed($character);
Please login to merge, or discard this patch.
src/CombatActions/Attack.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,8 +30,10 @@
 block discarded – undo
30 30
    * Hit chance = Attacker's hit - Defender's dodge, but at least 15%
31 31
    * Damage = Attacker's damage - defender's defense
32 32
    */
33
-  public function do(CombatBase $combat, Character $character): void {
33
+  public function do {
34
+    (CombatBase $combat, Character $character): void {
34 35
     $result = [];
36
+  }
35 37
     $defender = $combat->selectAttackTarget($character);
36 38
     if($defender === null) {
37 39
       return;
Please login to merge, or discard this patch.