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 ( bd17d5...23c909 )
by Jonny
03:33
created
src/JonnyW/PhantomJs/Tests/Unit/Procedure/ChainProcedureLoaderTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * Get procedure loader.
150 150
      *
151 151
      * @access protected
152
-     * @return \JonnyW\PhantomJs\Procedure\ProcedureLoaderInterface
152
+     * @return \PHPUnit_Framework_MockObject_MockObject
153 153
      */
154 154
     protected function getProcedureLoader()
155 155
     {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      * Get procedure.
163 163
      *
164 164
      * @access protected
165
-     * @return \JonnyW\PhantomJs\Procedure\ProcedureInterface
165
+     * @return \PHPUnit_Framework_MockObject_MockObject
166 166
      */
167 167
     protected function getProcedure()
168 168
     {
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Tests/Unit/Procedure/ProcedureLoaderFactoryTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      * Get procedure factory.
90 90
      *
91 91
      * @access protected
92
-     * @return \JonnyW\PhantomJs\Procedure\ProcedureFactoryInterface
92
+     * @return \PHPUnit_Framework_MockObject_MockObject
93 93
      */
94 94
     protected function getProcedureFactory()
95 95
     {
Please login to merge, or discard this patch.
src/JonnyW/PhantomJs/Tests/Unit/Procedure/ProcedureLoaderTest.php 1 patch
Doc Comments   +2 added lines, -5 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()
@@ -264,7 +261,7 @@  discard block
 block discarded – undo
264 261
      * Get file locator.
265 262
      *
266 263
      * @access protected
267
-     * @return \Symfony\Component\Config\FileLocatorInterface
264
+     * @return \PHPUnit_Framework_MockObject_MockObject
268 265
      */
269 266
     protected function getFileLocator()
270 267
     {
@@ -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/Procedure/ProcedureTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
      * Get engine
229 229
      *
230 230
      * @access protected
231
-     * @return \JonnyW\PhantomJs\Engine
231
+     * @return \PHPUnit_Framework_MockObject_MockObject
232 232
      */
233 233
     protected function getEngine()
234 234
     {
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.