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 — develop ( 33e0d8...37d09b )
by Baptiste
02:56 queued 50s
created
StringPrimitive.php 1 patch
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@  discard block
 block discarded – undo
9 9
 {
10 10
     private $value;
11 11
 
12
+    /**
13
+     * @param string $value
14
+     */
12 15
     public function __construct($value)
13 16
     {
14 17
         if (!is_string($value)) {
@@ -114,7 +117,7 @@  discard block
 block discarded – undo
114 117
      *
115 118
      * @throws Exception If the string is not found
116 119
      *
117
-     * @return StringInterface
120
+     * @return StringPrimitive
118 121
      */
119 122
     public function str($delimiter)
120 123
     {
@@ -190,7 +193,7 @@  discard block
 block discarded – undo
190 193
      * Pad to the right
191 194
      *
192 195
      * @param int $length
193
-     * @param string $charater
196
+     * @param string $character
194 197
      *
195 198
      * @return StringPrimitive
196 199
      */
@@ -203,7 +206,7 @@  discard block
 block discarded – undo
203 206
      * Pad to the left
204 207
      *
205 208
      * @param int $length
206
-     * @param string $charater
209
+     * @param string $character
207 210
      *
208 211
      * @return StringPrimitive
209 212
      */
@@ -216,7 +219,7 @@  discard block
 block discarded – undo
216 219
      * Pad both sides
217 220
      *
218 221
      * @param int $length
219
-     * @param string $charater
222
+     * @param string $character
220 223
      *
221 224
      * @return StringPrimitive
222 225
      */
Please login to merge, or discard this patch.