Skip to content

Commit

Permalink
Removing cast to int
Browse files Browse the repository at this point in the history
  • Loading branch information
stygiansabyss committed Apr 5, 2016
1 parent a2112fd commit a19c6eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Syntax/SteamApi/SteamId.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private function convertToID32()
private function convertToID64()
{
$formatted = bcadd($this->rawValue, self::$id64Base, 0);
$this->formatted->{self::$ID64} = (int) $formatted;
$this->formatted->{self::$ID64} = $formatted;
}

private function convertToID3()
Expand Down Expand Up @@ -136,4 +136,4 @@ private function getRawValue($id, $type, $matches)
}
}

}
}

0 comments on commit a19c6eb

Please sign in to comment.