mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
CS code fixes by pint
This commit is contained in:
@@ -165,12 +165,12 @@ class HashAlgorithms
|
||||
protected function _hashesToArray($string)
|
||||
{
|
||||
$strings = [
|
||||
'input' => $string,
|
||||
'lower' => strtolower($string),
|
||||
'input' => $string,
|
||||
'lower' => strtolower($string),
|
||||
'lower_reverse' => strtolower(strrev($string)),
|
||||
'upper_reverse' => strtoupper(strrev($string)),
|
||||
'upper' => strtoupper($string),
|
||||
'reverse' => strrev($string),
|
||||
'upper' => strtoupper($string),
|
||||
'reverse' => strrev($string),
|
||||
'reverse_upper' => strrev(strtoupper($string)),
|
||||
'reverse_lower' => strrev(strtolower($string)),
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user