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 ( f99cea...a60d65 )
by Freek
01:54
created
src/Screens/Phpunit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\PhpUnitWatcher\Screens;
4 4
 
5
-use Symfony\Component\Process\Process;
6 5
 use Spatie\PhpUnitWatcher\Notification;
6
+use Symfony\Component\Process\Process;
7 7
 
8 8
 class Phpunit extends Screen
9 9
 {
Please login to merge, or discard this patch.
src/Terminal.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
         return $this;
56 56
     }
57 57
 
58
+    /**
59
+     * @param string $level
60
+     */
58 61
     public function write(string $message = '', $level = null)
59 62
     {
60 63
         if ($level != '') {
Please login to merge, or discard this patch.
src/Screens/FilterFileName.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         return $this;
45 45
     }
46 46
 
47
+    /**
48
+     * @param \Clue\React\Stdio\Readline $readline
49
+     */
47 50
     protected function registerAutocompleter($readline)
48 51
     {
49 52
         $readline->setAutocomplete(function ($word, $startOffset, $endOffset) use ($readline) {
Please login to merge, or discard this patch.