From 88dd2f3232c8d0f30002276b484eb957de7a860b Mon Sep 17 00:00:00 2001 From: Greg Aker Date: Sat, 7 Apr 2012 14:09:22 -0500 Subject: [PATCH] Altering visibility of Crypter::randomizer() to public. --- laravel/crypter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/crypter.php b/laravel/crypter.php index f5113f34..18bac81b 100644 --- a/laravel/crypter.php +++ b/laravel/crypter.php @@ -74,7 +74,7 @@ public static function decrypt($value) * * @return int */ - protected static function randomizer() + public static function randomizer() { // There are various sources from which we can get random numbers // but some are more random than others. We'll choose the most