Skip to content

Commit

Permalink
Remove var_dump from Utils (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
zmotso authored and Minishlink committed Feb 25, 2019
1 parent 8da4820 commit db3bca9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public static function unserializePublicKey(string $data): array
{
$data = bin2hex($data);
if (mb_substr($data, 0, 2, '8bit') !== '04') {
var_dump($data);
throw new \InvalidArgumentException('Invalid data: only uncompressed keys are supported.');
}
$data = mb_substr($data, 2, null, '8bit');
Expand Down

0 comments on commit db3bca9

Please sign in to comment.