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 — 3.0 ( 6d983c...443341 )
by Vermeulen
01:58
created
src/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
      * 
181 181
      * @param array $options Options passed to application
182 182
      * 
183
-     * @return void
183
+     * @return Application
184 184
      */
185 185
     public function initSystems(array $options)
186 186
     {
Please login to merge, or discard this patch.
src/Dates.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
     /**
446 446
      * Format date to human readable when the date is now
447 447
      * 
448
-     * @param object $parsedTxt Texts returned by humanReadable method
448
+     * @param anonymous//src/Dates.php$0 $parsedTxt Texts returned by humanReadable method
449 449
      * 
450 450
      * @return void
451 451
      */
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
     /**
459 459
      * Format date to human readable when date is today
460 460
      * 
461
-     * @param object $parsedTxt Texts returned by humanReadable method
461
+     * @param anonymous//src/Dates.php$0 $parsedTxt Texts returned by humanReadable method
462 462
      * @param \DateInterval $diff Interval between now and date to read
463 463
      * 
464 464
      * @return void
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
     /**
486 486
      * Format date to human readable when date is yesterday
487 487
      * 
488
-     * @param object $parsedTxt Texts returned by humanReadable method
488
+     * @param anonymous//src/Dates.php$0 $parsedTxt Texts returned by humanReadable method
489 489
      * 
490 490
      * @return void
491 491
      */
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
     /**
504 504
      * Format date to human readable when date is tomorrow
505 505
      * 
506
-     * @param object $parsedTxt Texts returned by humanReadable method
506
+     * @param anonymous//src/Dates.php$0 $parsedTxt Texts returned by humanReadable method
507 507
      * 
508 508
      * @return void
509 509
      */
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
     /**
522 522
      * Format date to human readable when date is not now, today or yesterday
523 523
      * 
524
-     * @param object $parsedTxt Texts returned by humanReadable method
524
+     * @param anonymous//src/Dates.php$0 $parsedTxt Texts returned by humanReadable method
525 525
      * @param \DateTime $current DateTime object for now
526 526
      * 
527 527
      * @return void
Please login to merge, or discard this patch.
src/Form.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * Save the form's token
62 62
      * 
63
-     * @param object $saveInfos Infos about token (id and expire time)
63
+     * @param anonymous//src/Form.php$0 $saveInfos Infos about token (id and expire time)
64 64
      * 
65 65
      * @return void
66 66
      */
@@ -136,6 +136,9 @@  discard block
 block discarded – undo
136 136
             protected $token;
137 137
             protected $date;
138 138
             
139
+            /**
140
+             * @param string $token
141
+             */
139 142
             public function __construct($token)
140 143
             {
141 144
                 $this->token = $token;
Please login to merge, or discard this patch.
src/RunTasks.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * Add a new run step to the list
54 54
      * 
55 55
      * @param string $name          The name of the new run step
56
-     * @param object $runStepsToAdd The run step to add
56
+     * @param anonymous//src/RunTasks.php$0 $runStepsToAdd The run step to add
57 57
      * 
58 58
      * @return $this
59 59
      */
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      * @param callable|null $callback The callback to call when
155 155
      *  the task is runned
156 156
      * 
157
-     * @return object
157
+     * @return anonymous//src/RunTasks.php@return object
158 158
      */
159 159
     public static function generateStepItem($context = null, $callback = null)
160 160
     {
@@ -162,6 +162,9 @@  discard block
 block discarded – undo
162 162
             public $context;
163 163
             public $callback;
164 164
             
165
+            /**
166
+             * @param callable|null $callback
167
+             */
165 168
             public function __construct($context, $callback)
166 169
             {
167 170
                 $this->context  = $context;
Please login to merge, or discard this patch.
src/Subject.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -178,6 +178,9 @@
 block discarded – undo
178 178
             public $action;
179 179
             public $context;
180 180
             
181
+            /**
182
+             * @param string $action
183
+             */
181 184
             public function __construct($action, $context) {
182 185
                 $this->action  = $action;
183 186
                 $this->context = $context;
Please login to merge, or discard this patch.
src/Install/ModuleInstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -521,7 +521,7 @@
 block discarded – undo
521 521
      */
522 522
     protected function removeRecursiveDirectory(string $dirPath): bool
523 523
     {
524
-        $fileList = array_diff(scandir($dirPath), ['.','..']);
524
+        $fileList = array_diff(scandir($dirPath), ['.', '..']);
525 525
         
526 526
         foreach ($fileList as $filePath) {
527 527
             if (is_dir($filePath)) {
Please login to merge, or discard this patch.