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 2.x (fc6427)
by Jakub
06:12
created
src/Resource/ResourceBase.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
     }
123 123
 
124 124
     /**
125
-     * @param $path
125
+     * @param string $path
126 126
      *
127 127
      * @return \Psr\Http\Message\UriInterface
128 128
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
             // Send async request.
183 183
             $response = $client->sendAsyncRequest($request)->wait();
184 184
         } else {
185
-            throw new \LogicException('Unknown HTTP Client type: '. implode(',', class_implements($client)));
185
+            throw new \LogicException('Unknown HTTP Client type: ' . implode(',', class_implements($client)));
186 186
         }
187 187
 
188 188
         return $response;
Please login to merge, or discard this patch.
src/Resource/AuthorizedResourceBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         parent::__construct($vipps, $subscription_key);
24 24
         $this->headers['Authorization'] =
25 25
                 $this->app->getClient()->getTokenStorage()->get()->getTokenType()
26
-                .' '.
26
+                .' ' .
27 27
                 $this->app->getClient()->getTokenStorage()->get()->getAccessToken();
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/Model/Payment/TransactionLog.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     /**
104 104
      * Gets operation success value.
105 105
      *
106
-     * @return bool
106
+     * @return string
107 107
      */
108 108
     public function getOperationSuccess()
109 109
     {
Please login to merge, or discard this patch.
src/Model/Payment/UserDetails.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -12,52 +12,52 @@
 block discarded – undo
12 12
 class UserDetails
13 13
 {
14 14
 
15
-  /**
16
-   * @var string
17
-   * @Serializer\Type("string")
18
-   */
15
+    /**
16
+     * @var string
17
+     * @Serializer\Type("string")
18
+     */
19 19
     protected $bankIdVerified;
20 20
 
21
-  /**
22
-   * @var string
23
-   * @Serializer\Type("string")
24
-   */
21
+    /**
22
+     * @var string
23
+     * @Serializer\Type("string")
24
+     */
25 25
     protected $dateOfBirth;
26 26
 
27
-  /**
28
-   * @var string
29
-   * @Serializer\Type("string")
30
-   */
27
+    /**
28
+     * @var string
29
+     * @Serializer\Type("string")
30
+     */
31 31
     protected $email;
32 32
 
33
-  /**
34
-   * @var string
35
-   * @Serializer\Type("string")
36
-   */
33
+    /**
34
+     * @var string
35
+     * @Serializer\Type("string")
36
+     */
37 37
     protected $firstName;
38 38
 
39
-  /**
40
-   * @var string
41
-   * @Serializer\Type("string")
42
-   */
39
+    /**
40
+     * @var string
41
+     * @Serializer\Type("string")
42
+     */
43 43
     protected $lastName;
44 44
 
45
-  /**
46
-   * @var string
47
-   * @Serializer\Type("string")
48
-   */
45
+    /**
46
+     * @var string
47
+     * @Serializer\Type("string")
48
+     */
49 49
     protected $mobileNumber;
50 50
 
51
-  /**
52
-   * @var string
53
-   * @Serializer\Type("string")
54
-   */
51
+    /**
52
+     * @var string
53
+     * @Serializer\Type("string")
54
+     */
55 55
     protected $ssn;
56 56
 
57
-  /**
58
-   * @var string
59
-   * @Serializer\Type("string")
60
-   */
57
+    /**
58
+     * @var string
59
+     * @Serializer\Type("string")
60
+     */
61 61
     protected $userId;
62 62
 
63 63
     /**
Please login to merge, or discard this patch.
src/Model/Payment/ResponseGetPaymentDetails.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,6 +85,6 @@
 block discarded – undo
85 85
      */
86 86
     public function getUserDetails()
87 87
     {
88
-         return $this->userDetails;
88
+            return $this->userDetails;
89 89
     }
90 90
 }
Please login to merge, or discard this patch.