Passed
Push — master ( 453604...3fc8cc )
by Yang
02:01
created
src/MyMD5Hasher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/MyMD5HasherServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.