@@ -19,9 +19,9 @@ |
||
19 | 19 | */ |
20 | 20 | public function make($value, array $options = []) |
21 | 21 | { |
22 | - $salt = isset($options['salt']) ? $options['salt'] :''; |
|
22 | + $salt = isset($options['salt']) ? $options['salt'] : ''; |
|
23 | 23 | |
24 | - return hash('md5',$value.$salt); |
|
24 | + return hash('md5', $value.$salt); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function register() |
25 | 25 | { |
26 | - $this->app->singleton('md5hash',function(){ |
|
26 | + $this->app->singleton('md5hash', function() { |
|
27 | 27 | return new MyMD5Hasher(); |
28 | 28 | }); |
29 | 29 | } |