GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#82)
by
unknown
03:34
created
lib/Ogone/FlexCheckout/FlexCheckoutPaymentRequest.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@  discard block
 block discarded – undo
46 46
 		$this->parameters['account.pspid'] = $pspid;
47 47
 	}
48 48
 
49
+	/**
50
+	 * @param string $orderid
51
+	 */
49 52
 	public function setOrderId($orderid)
50 53
 	{
51 54
 		$this->parameters['alias.orderid'] = $orderid;
@@ -64,12 +67,18 @@  discard block
 block discarded – undo
64 67
 		$this->parameters['card.paymentmethod'] = $payment_method;
65 68
 	}
66 69
 
70
+	/**
71
+	 * @param string $accepturl
72
+	 */
67 73
 	public function setAccepturl($accepturl)
68 74
 	{
69 75
 		$this->validateUri($accepturl);
70 76
 		$this->parameters['parameters.accepturl'] = $accepturl;
71 77
 	}
72 78
 
79
+	/**
80
+	 * @param string $exceptionurl
81
+	 */
73 82
 	public function setExceptionurl($exceptionurl)
74 83
 	{
75 84
 		$this->validateUri($exceptionurl);
Please login to merge, or discard this patch.
tests/Ogone/Tests/FlexCheckout/FlexCheckoutPaymentResponseTest.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,5 @@
 block discarded – undo
1 1
 <?php namespace Ogone\Tests\FlexCheckout;
2 2
 
3
-use GuzzleHttp\Client;
4
-use Ogone\FlexCheckout\FlexCheckoutPaymentRequest;
5
-use Ogone\FlexCheckout\Alias;
6
-
7 3
 use Ogone\FlexCheckout\FlexCheckoutPaymentResponse;
8 4
 use Ogone\HashAlgorithm;
9 5
 use Ogone\Passphrase;
Please login to merge, or discard this patch.