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 ( 56d1b9...081989 )
by
unknown
02:05
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/AbstractTest.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Checkdomain\Comodo\ImapExtension
29
+     * @return ImapExtension
30 30
      */
31 31
     protected function createImapExtension()
32 32
     {
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Creates a class to simulate Requests, and return response String for testing purposes
100 100
      *
101
-     * @param $responseString
101
+     * @param string $responseString
102 102
      *
103
-     * @return \PHPUnit_Framework_MockObject_MockObject|\GuzzleHttp\Client
103
+     * @return null|Client
104 104
      */
105 105
     protected function createGuzzleClient($responseString)
106 106
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use GuzzleHttp\Client;
11 11
 use Psr\Http\Message\ResponseInterface;
12 12
 use Psr\Http\Message\StreamInterface;
13
-use Zend\Mail\Storage\Folder;
14 13
 
15 14
 abstract class AbstractTest extends \PHPUnit_Framework_TestCase
16 15
 {
Please login to merge, or discard this patch.