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 — oldserver ( 999e0e...81a4a0 )
by Roderik
07:27
created
src/Kunstmaan/Skylab/Provider/RemoteProvider.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -23,6 +23,8 @@
 block discarded – undo
23 23
      * @param $url
24 24
      * @param  string $contentType
25 25
      * @param  string $filename
26
+     * @param string $username
27
+     * @param string $password
26 28
      * @return string
27 29
      */
28 30
     public function curl($url, $contentType = null, $filename = null, $cacheTimeInSeconds = 0, $username = null, $password = null)
Please login to merge, or discard this patch.
src/Kunstmaan/Skylab/Command/ShareCommand.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,10 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Kunstmaan\Skylab\Command;
4 4
 
5
-use Symfony\Component\Console\Helper\TableSeparator;
6
-use Symfony\Component\Console\Input\InputArgument;
7
-use Symfony\Component\Console\Input\InputOption;
8
-
9 5
 class ShareCommand extends AbstractCommand
10 6
 {
11 7
 
Please login to merge, or discard this patch.
src/Kunstmaan/Skylab/Provider/DialogProvider.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     /**
95 95
      * @param  string $question The question text
96 96
      * @param  bool   $default  The default action
97
-     * @return bool
97
+     * @return string
98 98
      */
99 99
     public function askConfirmation($question, $default = true)
100 100
     {
@@ -211,6 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
     /**
213 213
      * @param $rows
214
+     * @param string[] $headers
214 215
      */
215 216
     public function renderTable($headers, $rows)
216 217
     {
Please login to merge, or discard this patch.
src/Kunstmaan/Skylab/Provider/ProcessProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      * @param bool   $silent  Be silent or not
53 53
      * @param string $sudoAs  Sudo as a different user then the root user
54 54
      *
55
-     * @return bool|string
55
+     * @return string
56 56
      */
57 57
     public function executeSudoCommand($command, $silent = false, $sudoAs = null)
58 58
     {
Please login to merge, or discard this patch.
src/Kunstmaan/Skylab/Skeleton/WebserverSkeleton.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
         }
80 80
     }
81 81
 
82
+    /**
83
+     * @param string $configcontent
84
+     */
82 85
     private function fixApache24Compat($configcontent){
83 86
         if (strpos($configcontent, "Require all granted") === false) {
84 87
             return preg_replace('/(<Directory.*\ >)(.*)(<\/Directory>)/s', "\${1}\nOptions -Indexes +MultiViews +Includes +FollowSymLinks\nAllowOverride All\n<IfVersion < 2.4>\nOrder allow,deny\nAllow from all\n</IfVersion>\n<IfVersion >= 2.4>\nRequire all granted\n</IfVersion>\n\${3}", $configcontent);
@@ -257,9 +260,9 @@  discard block
 block discarded – undo
257 260
     }
258 261
 
259 262
     /**
260
-     * @param $location
261
-     * @param $cleanedLocation
262
-     * @param $target
263
+     * @param string $location
264
+     * @param string $cleanedLocation
265
+     * @param string $target
263 266
      */
264 267
     private function renderConfig($location, $cleanedLocation, $target)
265 268
     {
Please login to merge, or discard this patch.