Passed
Push — master ( 592c15...84fb32 )
by Reüel
04:16
created
src/Connect/Signature.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.