@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | * |
| 41 | 41 | * @return string |
| 42 | 42 | */ |
| 43 | - public static function generate( $amount, $currency, $account, $site_id, $transaction_id ) { |
|
| 43 | + public static function generate($amount, $currency, $account, $site_id, $transaction_id) { |
|
| 44 | 44 | $values = array( |
| 45 | 45 | $amount, |
| 46 | 46 | $currency, |
@@ -49,9 +49,9 @@ discard block |
||
| 49 | 49 | $transaction_id, |
| 50 | 50 | ); |
| 51 | 51 | |
| 52 | - $string = implode( '', $values ); |
|
| 52 | + $string = implode('', $values); |
|
| 53 | 53 | |
| 54 | - $signature = md5( $string ); |
|
| 54 | + $signature = md5($string); |
|
| 55 | 55 | |
| 56 | 56 | return $signature; |
| 57 | 57 | } |