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 — develop ( 31696d...d014e0 )
by Stuart
05:40
created
src/php/Prose/functions.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1140,7 +1140,7 @@  discard block
 block discarded – undo
1140 1140
  * Storyplayer finishes the current test run. You can prevent this by using
1141 1141
  * the --readonly-users command-line switch.
1142 1142
  *
1143
- * @return \Prose\FromUsers
1143
+ * @return Users\FromUsers
1144 1144
  */
1145 1145
 function fromUsers()
1146 1146
 {
@@ -1404,7 +1404,7 @@  discard block
 block discarded – undo
1404 1404
  * use this in your own stories whenever you to need to add an extra log
1405 1405
  * message, for example to make it really clear what is happening.
1406 1406
  *
1407
- * @return \Storyplayer\SPv2\Modules\Host\UsingLog
1407
+ * @return Log\UsingLog
1408 1408
  */
1409 1409
 function usingLog()
1410 1410
 {
@@ -1601,6 +1601,7 @@  discard block
 block discarded – undo
1601 1601
  * This module is for internal use inside Storyplayer. You shouldn't need to
1602 1602
  * use it from your own stories.
1603 1603
  *
1604
+ * @param string $tableName
1604 1605
  * @return \Prose\UsingRuntimeTable
1605 1606
  */
1606 1607
 function usingRuntimeTable($tableName)
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Host/ExpectsHost.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -177,6 +177,7 @@  discard block
 block discarded – undo
177 177
 
178 178
     /**
179 179
      * @deprecated since v2.4.0
180
+     * @param string $sessionName
180 181
      */
181 182
     public function screenIsRunning($sessionName)
182 183
     {
@@ -185,6 +186,7 @@  discard block
 block discarded – undo
185 186
 
186 187
     /**
187 188
      * @deprecated since v2.4.0
189
+     * @param string $sessionName
188 190
      */
189 191
     public function screenIsNotRunning($sessionName)
190 192
     {
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Host/FromHost.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -318,6 +318,7 @@
 block discarded – undo
318 318
 
319 319
     /**
320 320
      * @deprecated since v2.4.0
321
+     * @param string $sessionName
321 322
      */
322 323
     public function getScreenIsRunning($sessionName)
323 324
     {
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Host/UsingHost.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -81,6 +81,7 @@
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * @deprecated since v2.4.0
84
+     * @param string $command
84 85
      */
85 86
     public function runCommandAndIgnoreErrors($command)
86 87
     {
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Screen.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -144,8 +144,6 @@
 block discarded – undo
144 144
      * This module provides support for running commands on the same computer
145 145
      * that Storyplayer is running on, inside a screen session.
146 146
      *
147
-     * @param  string $hostId
148
-     *         the ID of the host to use
149 147
      * @return UsingScreen
150 148
      */
151 149
     public static function onLocalhost()
Please login to merge, or discard this patch.