@@ -20,7 +20,7 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | public function register() |
| 22 | 22 | { |
| 23 | - $this->app->singleton('hash', function () { |
|
| 23 | + $this->app->singleton('hash', function() { |
|
| 24 | 24 | return new Argon2Hasher(); |
| 25 | 25 | }); |
| 26 | 26 | } |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | { |
| 10 | 10 | public function testArgon2Hashing() |
| 11 | 11 | { |
| 12 | - if (! defined('PASSWORD_ARGON2I')) { |
|
| 12 | + if (!defined('PASSWORD_ARGON2I')) { |
|
| 13 | 13 | $this->markTestSkipped('PHP not compiled with argon2 hashing support.'); |
| 14 | 14 | } |
| 15 | 15 | |