| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public static function generate( $amount, $currency, $account, $site_id, $transaction_id ) { |
||
| 44 | $values = array( |
||
| 45 | $amount, |
||
| 46 | $currency, |
||
| 47 | $account, |
||
| 48 | $site_id, |
||
| 49 | $transaction_id, |
||
| 50 | ); |
||
| 51 | |||
| 52 | $string = implode( '', $values ); |
||
| 53 | |||
| 54 | $signature = md5( $string ); |
||
| 55 | |||
| 56 | return $signature; |
||
| 57 | } |
||
| 59 |