@@ -44,25 +44,25 @@ discard block  | 
                                                    ||
| 44 | 44 | $this->getAssertionManager()  | 
                                                        
| 45 | 45 | ->setHandler(  | 
                                                        
| 46 | 46 | 'randomNativeValue',  | 
                                                        
| 47 | -                function () { | 
                                                        |
| 47 | +                function() { | 
                                                        |
| 48 | 48 | return $this->randomNativeValue();  | 
                                                        
| 49 | 49 | }  | 
                                                        
| 50 | 50 | )  | 
                                                        
| 51 | 51 | ->setHandler(  | 
                                                        
| 52 | 52 | 'invalidNativeValue',  | 
                                                        
| 53 | -                function () { | 
                                                        |
| 53 | +                function() { | 
                                                        |
| 54 | 54 | return $this->invalidNativeValue();  | 
                                                        
| 55 | 55 | }  | 
                                                        
| 56 | 56 | )  | 
                                                        
| 57 | 57 | ->setHandler(  | 
                                                        
| 58 | 58 | 'uniqueNativeValue',  | 
                                                        
| 59 | -                function () { | 
                                                        |
| 59 | +                function() { | 
                                                        |
| 60 | 60 | return $this->uniqueNativeValue();  | 
                                                        
| 61 | 61 | }  | 
                                                        
| 62 | 62 | )  | 
                                                        
| 63 | 63 | ->setHandler(  | 
                                                        
| 64 | 64 | 'fromNative',  | 
                                                        
| 65 | -                function ($value) { | 
                                                        |
| 65 | +                function($value) { | 
                                                        |
| 66 | 66 | return $this->fromNative($value);  | 
                                                        
| 67 | 67 | }  | 
                                                        
| 68 | 68 | )  | 
                                                        
@@ -111,7 +111,7 @@ discard block  | 
                                                    ||
| 111 | 111 | $this  | 
                                                        
| 112 | 112 | ->given($native = $this->invalidNativeValue())  | 
                                                        
| 113 | 113 | ->then  | 
                                                        
| 114 | -                ->exception(function () use ($native) { | 
                                                        |
| 114 | +                ->exception(function() use ($native) { | 
                                                        |
| 115 | 115 | $this->fromNative($native);  | 
                                                        
| 116 | 116 | })  | 
                                                        
| 117 | 117 | ->isInstanceOf(\InvalidArgumentException::class)  |