From 327ea4afbef132796e56a18dc3c288ca3cc97d51 Mon Sep 17 00:00:00 2001 From: Darko Date: Thu, 16 Apr 2015 11:42:43 +0200 Subject: [PATCH] Change class name. --- lib/testing/Dev/test_hash_algorithms.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/testing/Dev/test_hash_algorithms.php b/lib/testing/Dev/test_hash_algorithms.php index 5e55468fc..cce85073c 100644 --- a/lib/testing/Dev/test_hash_algorithms.php +++ b/lib/testing/Dev/test_hash_algorithms.php @@ -14,7 +14,7 @@ if (!isset($argv[1]) || !isset($argv[2])) { * Test various hashing/encoding/etc on a string. * Class hash_algorithms */ -class hash_algorithms +class HashAlgorithms { /** * The input string. @@ -188,4 +188,4 @@ class hash_algorithms } } -new hash_algorithms($argv[1], $argv[2], ((isset($argv[3]) && strtolower($argv[3]) === 'true') ? true : false)); +new HashAlgorithms($argv[1], $argv[2], ((isset($argv[3]) && strtolower($argv[3]) === 'true') ? true : false));