| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 13 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 7 | 
| CRAP Score | 1.0019 | 
| Changes | 4 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 30 | 2 | 	public static function transform( Money $money ) { | 
            |
| 31 | 2 | $amount = new Amount(  | 
            |
| 32 | $money->get_currency()->get_alphabetic_code(),  | 
            ||
| 33 | 2 | /**  | 
            |
| 34 | * Make sure to send the right amount of decimals and omit the  | 
            ||
| 35 | * thousands separator. Non-string values are not accepted.  | 
            ||
| 36 | *  | 
            ||
| 37 | 2 | * @link https://docs.mollie.com/reference/v2/payments-api/create-payment  | 
            |
| 38 | 2 | */  | 
            |
| 39 | 2 | $money->number_format( null, '.', '' )  | 
            |
| 
                                                                                                    
                        
                         | 
                |||
| 40 | );  | 
            ||
| 41 | |||
| 42 | 2 | return $amount;  | 
            |
| 43 | }  | 
            ||
| 45 | 
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.