]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/crypto/class_CryptoHelper.php
All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / crypto / class_CryptoHelper.php
index c99a85d0af4995c32644e2a6673a3491bc99e0e1..bc1c191f8be96b1f189e1c36f2550b50d8bb1b68 100644 (file)
@@ -39,7 +39,7 @@ class CryptoHelper extends BaseFrameworkSystem implements Cryptable {
        /**
         * Salt for hashing operations
         */
-       private $salt = "";
+       private $salt = '';
 
        /**
         * Protected constructor
@@ -126,7 +126,7 @@ class CryptoHelper extends BaseFrameworkSystem implements Cryptable {
         * @param       $oldHash        A hash from previous hashed string
         * @return      $hashed         The hashed and salted string
         */
-       public function hashString ($str, $oldHash = "") {
+       public function hashString ($str, $oldHash = '') {
                // Cast the string
                $str = (string) $str;