Skip to content

Commit

Permalink
Merge pull request #1 from mbmachado/mbmachado-patch-1
Browse files Browse the repository at this point in the history
Update rAtrium.php
  • Loading branch information
Mateus Barbosa Machado authored Jun 19, 2017
2 parents 8239060 + e094488 commit 62b9380
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions rAtrium.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,16 @@ private function purifyBlood( $dieChange ) {
return $arterial;
}


private function cleaner($venous) {
$venous = str_replace(' ', '', $venous);
$venous = explode(':', $venous);
foreach ( $venous as $key => $value ) {
if ( $key > 1 ) {
$venous[1] .= ':'.$value;
unset($venous[$key]);
}
}
$value = explode('\'', $venous[1], 3);
self::verifyBoolean($value[1]);
$venous[1] = $value[1];
Expand Down

0 comments on commit 62b9380

Please sign in to comment.