Completed
Pull Request — master (#57)
by
unknown
03:12 queued 12s
created
app/plugins/password.php 1 patch
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,8 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @return string|false The hashed password, or false on error.
23 23
      */
24
-    function password_hash($password, $algo, array $options = array()) {
24
+    function password_hash($password, $algo, array $options = array())
25
+    {
25 26
         if (!function_exists('crypt')) {
26 27
             trigger_error("Crypt must be loaded for password_hash to function", E_USER_WARNING);
27 28
             return null;
@@ -149,7 +150,8 @@  discard block
 block discarded – undo
149 150
      *
150 151
      * @return array The array of information about the hash.
151 152
      */
152
-    function password_get_info($hash) {
153
+    function password_get_info($hash)
154
+    {
153 155
         $return = array(
154 156
             'algo' => 0,
155 157
             'algoName' => 'unknown',
@@ -175,7 +177,8 @@  discard block
 block discarded – undo
175 177
      *
176 178
      * @return boolean True if the password needs to be rehashed.
177 179
      */
178
-    function password_needs_rehash($hash, $algo, array $options = array()) {
180
+    function password_needs_rehash($hash, $algo, array $options = array())
181
+    {
179 182
         $info = password_get_info($hash);
180 183
         if ($info['algo'] != $algo) {
181 184
             return true;
@@ -199,7 +202,8 @@  discard block
 block discarded – undo
199 202
      *
200 203
      * @return boolean If the password matches the hash
201 204
      */
202
-    function password_verify($password, $hash) {
205
+    function password_verify($password, $hash)
206
+    {
203 207
         if (!function_exists('crypt')) {
204 208
             trigger_error("Crypt must be loaded for password_verify to function", E_USER_WARNING);
205 209
             return false;
Please login to merge, or discard this patch.