Completed
Push — master ( 5d9660...7038ba )
by Jakub
03:12
created
src/CombatBase.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
   
Please login to merge, or discard this patch.