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 ( e87f76...5c1085 )
by Tyler
02:08
created
src/Handler/PlivoHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * @param bool   $useSSL     Whether to connect via SSL.
27 27
      * @param string $host       The Plivo server hostname.
28 28
      * @param string $version    The Plivo API version (default PlivoHandler::API_V1)
29
-     * @param string $limit      The character limit
29
+     * @param integer $limit      The character limit
30 30
      */
31 31
     public function __construct($authToken, $authId, $fromNumber, $toNumber, $level = Logger::CRITICAL, $bubble = true, $useSSL = true, $host = 'api.plivo.com', $version = self::API_V1, $limit = 160)
32 32
     {
Please login to merge, or discard this patch.
src/Handler/SMSHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      * @param bool   $useSSL     Whether to connect via SSL.
51 51
      * @param string $host       The Plivo server hostname.
52 52
      * @param string $version    The Plivo API version (default PlivoHandler::API_V1)
53
-     * @param string $limit      The character limit
53
+     * @param integer $limit      The character limit
54 54
      */
55 55
     public function __construct($authToken, $authId, $fromNumber, $toNumber, $level = Logger::CRITICAL, $bubble = true, $useSSL = true, $host = 'api.plivo.com', $version = null, $limit = 160)
56 56
     {
Please login to merge, or discard this patch.
src/Handler/TwilioHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * @param bool   $useSSL     Whether to connect via SSL.
27 27
      * @param string $host       The Twilio server hostname.
28 28
      * @param string $version    The Twilio API version (default TwilioHandler::API_V1)
29
-     * @param string $limit      The character limit
29
+     * @param integer $limit      The character limit
30 30
      */
31 31
     public function __construct($secret, $sid, $fromNumber, $toNumber, $level = Logger::CRITICAL, $bubble = true, $useSSL = true, $host = 'api.twilio.com', $version = self::API_V1, $limit = 160)
32 32
     {
Please login to merge, or discard this patch.