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 ( a6909c...b32323 )
by Florian
05:40
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   +6 added lines, -6 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 ImapWithSearch|null       $imapWithSearch
57
-     * @param ImapHelper|null           $imapHelper
55
+     * @param CommunicationAdapter $communicationAdapter
56
+     * @param ImapAdapter       $imapWithSearch
57
+     * @param ImapHelper           $imapHelper
58 58
      */
59 59
     public function __construct(CommunicationAdapter $communicationAdapter, ImapAdapter $imapWithSearch, ImapHelper $imapHelper)
60 60
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param ImapWithSearch $imapWithSearch
116
+     * @param ImapAdapter $imapWithSearch
117 117
      *
118 118
      * @return Util
119 119
      */
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
      *
216 216
      * @param array $params
217 217
      *
218
-     * @return AutoApplyResult
218
+     * @return AutoReplaceResult
219 219
      * @throws Model\Exception\AccountException
220 220
      * @throws Model\Exception\ArgumentException
221 221
      * @throws Model\Exception\CSRException
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
     /**
352 352
      * @param CollectSslResult $object
353 353
      * @param array            $arr
354
-     * @param array            $timestampFields
354
+     * @param string[]            $timestampFields
355 355
      *
356 356
      * @return $this
357 357
      */
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.