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
Push — master ( a57166...d9a58e )
by
unknown
08:15
created
lib/Checkdomain/Comodo/Util.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Checkdomain\Comodo\Model\Exception\RequestException;
8 8
 use Checkdomain\Comodo\Model\Exception\UnknownApiException;
9 9
 use Checkdomain\Comodo\Model\Exception\UnknownException;
10
-
11 10
 use Checkdomain\Comodo\Model\Result\AutoApplyResult;
12 11
 use Checkdomain\Comodo\Model\Result\AutoReplaceResult;
13 12
 use Checkdomain\Comodo\Model\Result\CollectSslResult;
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * Constructs the Util with a communicationAdapter
54 54
      *
55
-     * @param CommunicationAdapter|null $communicationAdapter
56
-     * @param ImapAdapter|null          $imapAdapter
57
-     * @param ImapHelper|null           $imapHelper
55
+     * @param CommunicationAdapter $communicationAdapter
56
+     * @param ImapAdapter          $imapAdapter
57
+     * @param ImapHelper           $imapHelper
58 58
      */
59 59
     public function __construct(CommunicationAdapter $communicationAdapter, ImapAdapter $imapAdapter, ImapHelper $imapHelper)
60 60
     {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
      *
217 217
      * @param array $params
218 218
      *
219
-     * @return AutoApplyResult
219
+     * @return AutoReplaceResult
220 220
      * @throws Model\Exception\AccountException
221 221
      * @throws Model\Exception\ArgumentException
222 222
      * @throws Model\Exception\CSRException
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     /**
353 353
      * @param CollectSslResult $object
354 354
      * @param array            $arr
355
-     * @param array            $timestampFields
355
+     * @param string[]            $timestampFields
356 356
      *
357 357
      * @return $this
358 358
      */
Please login to merge, or discard this patch.
tests/Checkdomain/Comodo/ImapHelperTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     }
175 175
 
176 176
     /**
177
-     * @param $raw
177
+     * @param string $raw
178 178
      *
179 179
      * @return Message
180 180
      */
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -1,11 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Checkdomain\Comodo\Tests;
3 3
 
4
-use Checkdomain\Comodo\CommunicationAdapter;
5 4
 use Checkdomain\Comodo\ImapHelper;
6
-use Checkdomain\Comodo\ImapAdapter;
7
-use Checkdomain\Comodo\Model\Account;
8
-use Checkdomain\Comodo\Util;
9 5
 use Zend\Mail\Storage\Message;
10 6
 
11 7
 class ImapHelperTest extends AbstractTest
Please login to merge, or discard this patch.
tests/Checkdomain/Comodo/AbstractTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Creates a class to simulate Requests, and return response String for testing purposes
99 99
      *
100
-     * @param $responseString
100
+     * @param string $responseString
101 101
      *
102 102
      * @return \PHPUnit_Framework_MockObject_MockObject
103 103
      */
Please login to merge, or discard this patch.