From 8a5dc21835726f6784ecd8d72104ee929024faf6 Mon Sep 17 00:00:00 2001 From: Cameron Eagans Date: Tue, 1 Sep 2015 15:00:57 -0400 Subject: [PATCH] Coding standards fix --- phpseclib/Crypt/Random.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phpseclib/Crypt/Random.php b/phpseclib/Crypt/Random.php index 13f08047..52bc1a54 100644 --- a/phpseclib/Crypt/Random.php +++ b/phpseclib/Crypt/Random.php @@ -56,8 +56,7 @@ class Random if (version_compare(PHP_VERSION, '7.0.0', '>=')) { try { return random_bytes($length); - } - catch (\Error $e) { + } catch (\Error $e) { // If a sufficient source of randomness is unavailable, random_bytes() will emit a warning. // We don't actually need to do anything here. The string() method should just continue // as normal. Note, however, that if we don't have a sufficient source of randomness for