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 ( e2875b...35ced9 )
by Anton
03:41
created
src/Executor/Server.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -88,11 +88,19 @@
 block discarded – undo
88 88
         }
89 89
     }
90 90
 
91
+    /**
92
+     * @param double $interval
93
+     * @param \Closure $callback
94
+     */
91 95
     public function addPeriodicTimer($interval, $callback)
92 96
     {
93 97
         $this->loop->addPeriodicTimer($interval, $callback);
94 98
     }
95 99
 
100
+    /**
101
+     * @param integer $interval
102
+     * @param \Closure $callback
103
+     */
96 104
     public function addTimer($interval, $callback)
97 105
     {
98 106
         $this->loop->addTimer($interval, $callback);
Please login to merge, or discard this patch.
src/Host/Host.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 use Deployer\Configuration\Configuration;
11 11
 use Deployer\Component\Ssh\Arguments;
12
-use Deployer\Configuration\ProxyConfig;
13 12
 use Deployer\Deployer;
14 13
 
15 14
 class Host
Please login to merge, or discard this patch.