Change class name.

This commit is contained in:
Darko
2015-04-16 11:42:43 +02:00
parent d5f3f54d1d
commit 327ea4afbe
+2 -2
View File
@@ -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));