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 ( 080777...9cdac9 )
by Stuart
07:21
created
src/php/Storyplayer/SPv2/Modules/Browser/UsingBrowser.php 1 patch
Doc Comments   +8 added lines, -5 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * tick a checkbox or radio button if it has not yet been checked
74 74
      *
75
-     * @return \DataSift\Storyplayer\BrowserLib\SingleElementAction
75
+     * @return SingleElementAction
76 76
      */
77 77
     public function check()
78 78
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * remove any content from an input box, or untick a checkbox or
102 102
      * radio button
103 103
      *
104
-     * @return \DataSift\Storyplayer\BrowserLib\SingleElementAction
104
+     * @return SingleElementAction
105 105
      */
106 106
     public function clear()
107 107
     {
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Send a 'click' to the selected element
134 134
      *
135
-     * @return \DataSift\Storyplayer\BrowserLib\SingleElementAction
135
+     * @return SingleElementAction
136 136
      */
137 137
     public function click()
138 138
     {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      *
155 155
      * @param  string $label
156 156
      *         the human-readable text of the option to select
157
-     * @return \DataSift\Storyplayer\BrowserLib\SingleElementAction
157
+     * @return SingleElementAction
158 158
      */
159 159
     public function select($label)
160 160
     {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      *
186 186
      * @param  string $text
187 187
      *         the text to type
188
-     * @return \DataSift\Storyplayer\BrowserLib\SingleElementAction
188
+     * @return SingleElementAction
189 189
      */
190 190
     public function type($text)
191 191
     {
@@ -214,6 +214,9 @@  discard block
 block discarded – undo
214 214
     //
215 215
     // ------------------------------------------------------------------
216 216
 
217
+    /**
218
+     * @param string $url
219
+     */
217 220
     public function gotoPage($url)
218 221
     {
219 222
         // some shorthand to make things easier to read
Please login to merge, or discard this patch.