@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | foreach($team as $character) { |
| 240 | 240 | try { |
| 241 | 241 | $column++; |
| 242 | - if($character->positionRow > 0 AND $character->positionColumn > 0) { |
|
| 242 | + if($character->positionRow > 0 and $character->positionColumn > 0) { |
|
| 243 | 243 | continue; |
| 244 | 244 | } |
| 245 | 245 | setPosition: |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | $combatAction->do($combat, $character); |
| 387 | 387 | continue; |
| 388 | 388 | } |
| 389 | - throw new NotImplementedException("Action $action is not implemented."); |
|
| 389 | + throw new NotImplementedException("action $action is not implemented."); |
|
| 390 | 390 | } |
| 391 | 391 | } |
| 392 | 392 | |