@@ -2,8 +2,8 @@ |
||
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) { |
|
6 | - $configurator->addParameters(["appDir" => __DIR__,]); |
|
5 | +Testbench\Bootstrap::setup(__DIR__ . '/_temp', function(\Nette\Configurator $configurator) { |
|
6 | + $configurator->addParameters(["appDir" => __DIR__, ]); |
|
7 | 7 | $configurator->addConfig(__DIR__ . "/tests.neon"); |
8 | 8 | }); |
9 | 9 | ?> |
10 | 10 | \ No newline at end of file |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | protected function configureOptions(OptionsResolver $resolver): void { |
50 | 50 | parent::configureOptions($resolver); |
51 | - $allStats = ["baseDamage", "damageGrowth", "strikes", "hitRate",]; |
|
51 | + $allStats = ["baseDamage", "damageGrowth", "strikes", "hitRate", ]; |
|
52 | 52 | $resolver->setRequired($allStats); |
53 | 53 | $resolver->setAllowedTypes("baseDamage", "string"); |
54 | 54 | $resolver->setAllowedTypes("damageGrowth", "string"); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | public const TARGET_PARTY = "party"; |
27 | 27 | public const TARGET_ENEMY_PARTY = "enemy_party"; |
28 | 28 | /** @var string[] */ |
29 | - public const NO_STAT_TYPES = [self::TYPE_STUN, self::TYPE_POISON,]; |
|
29 | + public const NO_STAT_TYPES = [self::TYPE_STUN, self::TYPE_POISON, ]; |
|
30 | 30 | |
31 | 31 | /** @var string */ |
32 | 32 | protected $type; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | protected function configureOptions(OptionsResolver $resolver): void { |
62 | 62 | parent::configureOptions($resolver); |
63 | - $allStats = ["type", "stat", "value", "valueGrowth", "duration",]; |
|
63 | + $allStats = ["type", "stat", "value", "valueGrowth", "duration", ]; |
|
64 | 64 | $resolver->setRequired($allStats); |
65 | 65 | $resolver->setAllowedTypes("type", "string"); |
66 | 66 | $resolver->setAllowedValues("type", function(string $value) { |
@@ -190,10 +190,10 @@ |
||
190 | 190 | } |
191 | 191 | |
192 | 192 | protected function setStats(array $stats): void { |
193 | - $requiredStats = array_merge(["id", "name", "level", "initiativeFormula",], static::BASE_STATS); |
|
194 | - $allStats = array_merge($requiredStats, ["occupation", "race", "specialization", "gender", "experience",]); |
|
193 | + $requiredStats = array_merge(["id", "name", "level", "initiativeFormula", ], static::BASE_STATS); |
|
194 | + $allStats = array_merge($requiredStats, ["occupation", "race", "specialization", "gender", "experience", ]); |
|
195 | 195 | $numberStats = static::BASE_STATS; |
196 | - $textStats = ["name", "race", "occupation", "initiativeFormula",]; |
|
196 | + $textStats = ["name", "race", "occupation", "initiativeFormula", ]; |
|
197 | 197 | $resolver = new OptionsResolver(); |
198 | 198 | $resolver->setDefined($allStats); |
199 | 199 | $resolver->setAllowedTypes("id", ["integer", "string"]); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @return Character[] |
51 | 51 | */ |
52 | 52 | public function getAliveMembers(): array { |
53 | - return $this->getItems(["hitpoints>" => 0,]); |
|
53 | + return $this->getItems(["hitpoints>" => 0, ]); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | return null; |
129 | 129 | } |
130 | 130 | for($i = 1; $i <= PHP_INT_MAX; $i++) { |
131 | - if($this->hasItems(["positionRow" => $i, "hitpoints>" => 0,])) { |
|
131 | + if($this->hasItems(["positionRow" => $i, "hitpoints>" => 0, ])) { |
|
132 | 132 | return $i; |
133 | 133 | } |
134 | 134 | } |
@@ -52,7 +52,7 @@ |
||
52 | 52 | } |
53 | 53 | |
54 | 54 | protected function configureOptions(OptionsResolver $resolver): void { |
55 | - $allStats = ["id", "name", "slot", "type", "strength", "worn",]; |
|
55 | + $allStats = ["id", "name", "slot", "type", "strength", "worn", ]; |
|
56 | 56 | $resolver->setRequired($allStats); |
57 | 57 | $resolver->setAllowedTypes("id", "integer"); |
58 | 58 | $resolver->setAllowedTypes("name", "string"); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $this->onCombatEnd[] = [$this, "logCombatResult"]; |
83 | 83 | $this->onCombatEnd[] = [$this, "resetInitiative"]; |
84 | 84 | $this->onRoundStart[] = [$this, "decreaseEffectsDuration"]; |
85 | - $this->onRoundStart[] = [$this ,"recalculateStats"]; |
|
85 | + $this->onRoundStart[] = [$this, "recalculateStats"]; |
|
86 | 86 | $this->onRoundStart[] = [$this, "logRoundNumber"]; |
87 | 87 | $this->onRoundStart[] = [$this, "applyPoison"]; |
88 | 88 | $this->onRound[] = [$this, "mainStage"]; |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | return null; |
364 | 364 | } |
365 | 365 | /** @var Team $enemies */ |
366 | - $enemies = Team::fromArray($enemyTeam->getItems(["positionRow" => $rowToAttack, "hitpoints>" => 0,]), $enemyTeam->name); |
|
366 | + $enemies = Team::fromArray($enemyTeam->getItems(["positionRow" => $rowToAttack, "hitpoints>" => 0, ]), $enemyTeam->name); |
|
367 | 367 | } else { |
368 | 368 | $enemies = $enemyTeam; |
369 | 369 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | protected function configureOptions(OptionsResolver $resolver): void { |
40 | - $allStats = ["id", "deployed", "bonusStat", "bonusValue",]; |
|
40 | + $allStats = ["id", "deployed", "bonusStat", "bonusValue", ]; |
|
41 | 41 | $resolver->setRequired($allStats); |
42 | 42 | $resolver->setAllowedTypes("id", "integer"); |
43 | 43 | $resolver->setAllowedTypes("deployed", "boolean"); |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | protected function configureOptions(OptionsResolver $resolver): void { |
63 | - $requiredStats = ["action", "result", "character1", "character2",]; |
|
64 | - $resolver->setDefined(["amount", "name",]); |
|
63 | + $requiredStats = ["action", "result", "character1", "character2", ]; |
|
64 | + $resolver->setDefined(["amount", "name", ]); |
|
65 | 65 | $resolver->setRequired($requiredStats); |
66 | 66 | $resolver->setAllowedTypes("action", "string"); |
67 | 67 | $resolver->setAllowedValues("action", function(string $value) { |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $text = $this->translator->translate("combat.log.poison", $this->amount, ["character1" => $character1]); |
155 | 155 | break; |
156 | 156 | } |
157 | - $this->message = $text; |
|
157 | + $this->message = $text; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | public function __toString(): string { |