Passed
Push — master ( 170882...829174 )
by Jakub
01:43
created
src/CombatBase.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
       foreach($team as $character) {
229 229
         try {
230 230
           $column++;
231
-          if($character->positionRow > 0 AND $character->positionColumn > 0) {
231
+          if($character->positionRow > 0 and $character->positionColumn > 0) {
232 232
             continue;
233 233
           }
234 234
           setPosition:
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
     $characters = array_merge($combat->team1->toArray(), $combat->team2->toArray());
284 284
     foreach($characters as $character) {
285 285
       foreach($character->effects as $effect) {
286
-        if($effect->duration === CharacterEffect::DURATION_COMBAT OR is_int($effect->duration)) {
286
+        if($effect->duration === CharacterEffect::DURATION_COMBAT or is_int($effect->duration)) {
287 287
           $character->removeEffect($effect->id);
288 288
         }
289 289
       }
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
           continue 2;
405 405
         }
406 406
       }
407
-      throw new NotImplementedException("Action $action is not implemented.");
407
+      throw new NotImplementedException("action $action is not implemented.");
408 408
     }
409 409
   }
410 410
   
Please login to merge, or discard this patch.
src/Character.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -581,7 +581,7 @@
 block discarded – undo
581 581
       $stat = $effect->stat;
582 582
       $type = $effect->type;
583 583
       $duration = $effect->duration;
584
-      if(is_int($duration) AND $duration < 1) {
584
+      if(is_int($duration) and $duration < 1) {
585 585
         $this->removeEffect($effect->id);
586 586
         continue;
587 587
       }
Please login to merge, or discard this patch.