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 ( c11e1b...0baec8 )
by Jonny
03:47
created
src/JonnyW/PhantomJs/Procedure/Input.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      *
41 41
      * @access public
42 42
      * @param  string                            $name
43
-     * @param  mixed                             $value
43
+     * @param  string                             $value
44 44
      * @return \JonnyW\PhantomJs\Procedure\Input
45 45
      */
46 46
     public function set($name, $value)
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Procedure/Output.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      *
61 61
      * @access public
62 62
      * @param  string                             $name
63
-     * @param  mixed                              $value
63
+     * @param  string                              $value
64 64
      * @return \JonnyW\PhantomJs\Procedure\Output
65 65
      */
66 66
     public function set($name, $value)
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Tests/Integration/ClientTest.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -801,7 +801,6 @@
 block discarded – undo
801 801
      * Write procedure body to file.
802 802
      *
803 803
      * @access public
804
-     * @param  string $data
805 804
      * @return string
806 805
      */
807 806
     public function writeProcedure($procedure)
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Tests/Unit/Procedure/ProcedureLoaderTest.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -181,9 +181,6 @@  discard block
 block discarded – undo
181 181
      * Get procedure factory instance.
182 182
      *
183 183
      * @access protected
184
-     * @param  \JonnyW\PhantomJs\Parser\ParserInterface             $parser
185
-     * @param  \JonnyW\PhantomJs\Cache\CacheInterface               $cacheHandler
186
-     * @param  \JonnyW\PhantomJs\Template\TemplateRendererInterface $renderer
187 184
      * @return \JonnyW\PhantomJs\Procedure\ProcedureFactory
188 185
      */
189 186
     protected function getProcedureFactory()
@@ -323,7 +320,7 @@  discard block
 block discarded – undo
323 320
      * Write procedure body to file.
324 321
      *
325 322
      * @access public
326
-     * @param  string $data
323
+     * @param string $procedure
327 324
      * @return string
328 325
      */
329 326
     public function writeProcedure($procedure)
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Tests/Unit/Template/TemplateRendererTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     /**
108 108
      * Get template renderer instance.
109 109
      *
110
-     * @return \JonnyW\PhantomJs\Message\TemplateRenderer
110
+     * @return TemplateRenderer
111 111
      */
112 112
     protected function getTemplateRenderer()
113 113
     {
Please login to merge, or discard this patch.
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.
src/JonnyW/PhantomJs/Engine.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      *
103 103
      * @access public
104 104
      * @param  string                   $path
105
-     * @return \JonnyW\PhantomJs\Client
105
+     * @return Engine
106 106
      */
107 107
     public function setPath($path)
108 108
     {
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
      * Set PhantomJs run options.
129 129
      *
130 130
      * @access public
131
-     * @param  array                    $options
132
-     * @return \JonnyW\PhantomJs\Client
131
+     * @param  string[]                    $options
132
+     * @return Engine
133 133
      */
134 134
     public function setOptions(array $options)
135 135
     {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      *
155 155
      * @access public
156 156
      * @param  string                   $option
157
-     * @return \JonnyW\PhantomJs\Client
157
+     * @return Engine
158 158
      */
159 159
     public function addOption($option)
160 160
     {
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      *
171 171
      * @access public
172 172
      * @param  boolean                  $doDebug
173
-     * @return \JonnyW\PhantomJs\Client
173
+     * @return Engine
174 174
      */
175 175
     public function debug($doDebug)
176 176
     {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      *
185 185
      * @access public
186 186
      * @param  boolean                  $doCache
187
-     * @return \JonnyW\PhantomJs\Client
187
+     * @return Engine
188 188
      */
189 189
     public function cache($doCache)
190 190
     {
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      *
199 199
      * @access public
200 200
      * @param  string                   $info
201
-     * @return \JonnyW\PhantomJs\Client
201
+     * @return Engine
202 202
      */
203 203
     public function log($info)
204 204
     {
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      * Clear log info.
223 223
      *
224 224
      * @access public
225
-     * @return \JonnyW\PhantomJs\Client
225
+     * @return Engine
226 226
      */
227 227
     public function clearLog()
228 228
     {
Please login to merge, or discard this patch.