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
Pull Request — master (#77)
by
unknown
03:11
created
src/JonnyW/PhantomJs/Http/AbstractRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
      * @access public
199 199
      * @param  int  $width
200 200
      * @param  int  $height
201
-     * @return void
201
+     * @return AbstractRequest
202 202
      */
203 203
     public function setViewportSize($width, $height)
204 204
     {
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Http/CaptureRequest.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     /**
241 241
      * Get quality of capture.
242 242
      *
243
-     * @return string
243
+     * @return integer
244 244
      */
245 245
     public function getQuality()
246 246
     {
@@ -251,7 +251,6 @@  discard block
 block discarded – undo
251 251
      * Set quality of the capture.
252 252
      * example: 0 - 100.
253 253
      *
254
-     * @param int $format
255 254
      */
256 255
     public function setQuality($quality)
257 256
     {
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Http/CaptureRequestInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param int $height
24 24
      * @param int $top    (default: 0)
25 25
      * @param int $left   (default: 0)
26
+     * @return CaptureRequest
26 27
      */
27 28
     public function setCaptureDimensions($width, $height, $top = 0, $left = 0);
28 29
 
@@ -58,6 +59,7 @@  discard block
 block discarded – undo
58 59
      * Set file to save output.
59 60
      *
60 61
      * @param string $file
62
+     * @return CaptureRequest
61 63
      */
62 64
     public function setOutputFile($file);
63 65
 
@@ -80,6 +82,7 @@  discard block
 block discarded – undo
80 82
      * options: pdf, png, jpeg, bmp, ppm, gif.
81 83
      *
82 84
      * @param string $format
85
+     * @return CaptureRequest|null
83 86
      */
84 87
     public function setFormat($format);
85 88
 
@@ -94,7 +97,7 @@  discard block
 block discarded – undo
94 97
      * Set quality of the capture.
95 98
      * example: 0 - 100.
96 99
      *
97
-     * @param int $format
100
+     * @return CaptureRequest
98 101
      */
99 102
     public function setQuality($quality);
100 103
 }
Please login to merge, or discard this patch.