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 ( f383c1...7b8d76 )
by Ruben
02:45
created
src/WatcherCommand.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
         return $options;
63 63
     }
64 64
 
65
+    /**
66
+     * @return string
67
+     */
65 68
     protected function getConfigFileLocation()
66 69
     {
67 70
         $configNames = [
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\PhpUnitWatcher;
4 4
 
5
-use Symfony\Component\Yaml\Yaml;
5
+use Spatie\PhpUnitWatcher\Exceptions\InvalidConfigfile;
6 6
 use Symfony\Component\Console\Command\Command;
7
-use Symfony\Component\Console\Style\SymfonyStyle;
8 7
 use Symfony\Component\Console\Input\InputArgument;
9 8
 use Symfony\Component\Console\Input\InputInterface;
10 9
 use Symfony\Component\Console\Output\OutputInterface;
11
-use Spatie\PhpUnitWatcher\Exceptions\InvalidConfigfile;
10
+use Symfony\Component\Console\Style\SymfonyStyle;
11
+use Symfony\Component\Yaml\Yaml;
12 12
 
13 13
 class WatcherCommand extends Command
14 14
 {
Please login to merge, or discard this patch.