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
Branch 0.x (f91465)
by Jakub
08:30
created
examples/get_payment.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
     var_dump($payment->getStatus());
21 21
     // Get transaction details.
22 22
     var_dump($payment->getDetails());
23
-}
24
-catch (Exception $e) {
23
+} catch (Exception $e) {
25 24
     print '<pre>' . var_dump($e) . '</pre>';
26 25
 }
Please login to merge, or discard this patch.
examples/refund_payment.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
     $payment->refund('refunded', 50);
21 21
     // Dump status.
22 22
     var_dump($payment->getLastResponse());
23
-}
24
-catch (Exception $e) {
23
+} catch (Exception $e) {
25 24
     print '<pre>' . var_dump($e) . '</pre>';
26 25
 }
Please login to merge, or discard this patch.
examples/cancel_payment.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
     $payment->cancel('canceled');
21 21
     // Dump status.
22 22
     var_dump($payment->getLastResponse());
23
-}
24
-catch (Exception $e) {
23
+} catch (Exception $e) {
25 24
     print '<pre>' . var_dump($e) . '</pre>';
26 25
 }
Please login to merge, or discard this patch.
examples/capture_payment.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
     $payment->capture('captured', 100);
21 21
     // Dump status.
22 22
     var_dump($payment->getLastResponse());
23
-}
24
-catch (Exception $e) {
23
+} catch (Exception $e) {
25 24
     print '<pre>' . var_dump($e) . '</pre>';
26 25
 }
Please login to merge, or discard this patch.
examples/create_payment.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
     );
26 26
     // Dump last response.
27 27
     var_dump($payment->getLastResponse());
28
-}
29
-catch (Exception $e) {
28
+} catch (Exception $e) {
30 29
     print '<pre>' . var_dump($e) . '</pre>';
31 30
 }
Please login to merge, or discard this patch.