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 ( 39a0f6...fb7ee8 )
by Patrick
05:15
created
src/PHPCoverFish/Validator/Base/BaseCoverFishValidator.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
     /**
255 255
      * @param string $classFQN
256 256
      *
257
-     * @return CoverFishMessageError|\ReflectionClass
257
+     * @return CoverFishResult
258 258
      */
259 259
     public function validateReflectionClass($classFQN)
260 260
     {
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
      * @param string $classFQN
266 266
      * @param string $method
267 267
      *
268
-     * @return CoverFishMessageError|\ReflectionMethod|false
268
+     * @return CoverFishResult
269 269
      */
270 270
     public function validateReflectionMethod($classFQN, $method)
271 271
     {
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
      * @param string $classFQN
398 398
      * @param string $accessor
399 399
      *
400
-     * @return bool|CoverFishMessageError
400
+     * @return CoverFishResult
401 401
      */
402 402
     public function validateReflectionClassForAccessorVisibility($classFQN, $accessor)
403 403
     {
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
     /**
508 508
      * @param string $classFQN
509 509
      *
510
-     * @return CoverFishMessageError|\ReflectionClass
510
+     * @return \ReflectionClass
511 511
      */
512 512
     public function getReflectionClass($classFQN)
513 513
     {
Please login to merge, or discard this patch.
src/PHPCoverFish/Common/CoverFishMessageError.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                 if (!$noAnsiColors) {
73 73
                     $coverLine  = Color::tplNormalColor('@covers ');
74 74
                     $coverLine .= Color::tplMarkFailure($coverMapping->getClassFQN());
75
-                    $coverLine .= Color::tplYellowColor('::' . $coverMapping->getMethod());
75
+                    $coverLine .= Color::tplYellowColor('::'.$coverMapping->getMethod());
76 76
                 }
77 77
 
78 78
                 if (null === $coverMapping->getMethod()) {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                 $coverLine = sprintf('@covers %s::%s', $coverMapping->getClassFQN(), $coverMapping->getMethod());
86 86
                 if (!$noAnsiColors) {
87 87
                     $coverLine  = Color::tplNormalColor('@covers ');
88
-                    $coverLine .= Color::tplYellowColor($coverMapping->getClassFQN() . '::');
88
+                    $coverLine .= Color::tplYellowColor($coverMapping->getClassFQN().'::');
89 89
                     $coverLine .= Color::tplMarkFailure($coverMapping->getMethod());
90 90
                 }
91 91
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                 $coverLine = sprintf('@covers %s::<%s>', $coverMapping->getClassFQN(), $coverMapping->getAccessor());
111 111
                 if (!$noAnsiColors) {
112 112
                     $coverLine  = Color::tplNormalColor('@covers ');
113
-                    $coverLine .= Color::tplYellowColor($coverMapping->getClassFQN() . '::<');
113
+                    $coverLine .= Color::tplYellowColor($coverMapping->getClassFQN().'::<');
114 114
                     $coverLine .= Color::tplMarkFailure($coverMapping->getAccessor());
115 115
                     $coverLine .= Color::tplYellowColor('>');
116 116
                 }
Please login to merge, or discard this patch.
src/PHPCoverFish/Common/CoverFishMessageWarning.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
                 if (!$noAnsiColors) {
49 49
                     $coverLine  = Color::tplNormalColor('no @covers annotation for ');
50 50
                     $coverLine .= Color::tplYellowColor($coverMapping->getClassFQN());
51
-                    $coverLine .= Color::tplYellowColor('::' . $coverMapping->getMethod());
51
+                    $coverLine .= Color::tplYellowColor('::'.$coverMapping->getMethod());
52 52
                 }
53 53
 
54 54
                 if (null === $coverMapping->getMethod()) {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                 if (!$noAnsiColors) {
63 63
                     $coverLine  = Color::tplNormalColor('no phpdoc block for ');
64 64
                     $coverLine .= Color::tplYellowColor($coverMapping->getClassFQN());
65
-                    $coverLine .= Color::tplYellowColor('::' . $coverMapping->getMethod());
65
+                    $coverLine .= Color::tplYellowColor('::'.$coverMapping->getMethod());
66 66
                 }
67 67
 
68 68
                 if (null === $coverMapping->getMethod()) {
Please login to merge, or discard this patch.
src/PHPCoverFish/Common/CoverFishHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -292,12 +292,12 @@
 block discarded – undo
292 292
         try {
293 293
             $testClass = new \ReflectionClass($classFQN);
294 294
             do {
295
-                if( self::PHPUNIT_ID_CLASS === $testClass->getName() ) {
295
+                if (self::PHPUNIT_ID_CLASS === $testClass->getName()) {
296 296
                     return true;
297 297
                 }
298 298
 
299 299
                 $interfaces = $testClass->getInterfaceNames();
300
-                if (is_array( $interfaces) && in_array(self::PHPUNIT_ID_INTERFACE, $interfaces)) {
300
+                if (is_array($interfaces) && in_array(self::PHPUNIT_ID_INTERFACE, $interfaces)) {
301 301
                     return true;
302 302
                 }
303 303
 
Please login to merge, or discard this patch.