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 ( a8ce6f...615872 )
by Gjero
07:18
created
core/Pimf/Application.php 1 patch
Unused Use Statements   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,10 @@
 block discarded – undo
8 8
 
9 9
 namespace Pimf;
10 10
 
11
-use Pimf\Util\Character as Str, Pimf\Util\Header, Pimf\Util\Header\ResponseStatus, Pimf\Util\Uuid;
11
+use Pimf\Util\Character as Str;
12
+use Pimf\Util\Header;
13
+use Pimf\Util\Header\ResponseStatus;
14
+use Pimf\Util\Uuid;
12 15
 
13 16
 /**
14 17
  * Provides a facility for applications which provides reusable resources,
Please login to merge, or discard this patch.
core/Pimf/Request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
     /**
188 188
      * @param bool $asResource
189 189
      *
190
-     * @return resource|string
190
+     * @return string
191 191
      * @throws \LogicException When using the resource twice times.
192 192
      */
193 193
     public function getContent($asResource = false)
Please login to merge, or discard this patch.
core/Pimf/Util/Value.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @param $string
62
+     * @param string $string
63 63
      *
64 64
      * @return $this
65 65
      */
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     }
72 72
 
73 73
     /**
74
-     * @param $string
74
+     * @param string $string
75 75
      *
76 76
      * @return $this
77 77
      */
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param $byString The delimiter string
116
+     * @param string $byString The delimiter string
117 117
      *
118 118
      * @return array
119 119
      */
Please login to merge, or discard this patch.