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 (#42)
by
unknown
01:53
created
src/Naneau/Obfuscator/Obfuscator.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -10,13 +10,9 @@
 block discarded – undo
10 10
 
11 11
 use Naneau\Obfuscator\Obfuscator\Event\File as FileEvent;
12 12
 use Naneau\Obfuscator\Obfuscator\Event\FileError as FileErrorEvent;
13
-
14 13
 use PhpParser\NodeTraverserInterface as NodeTraverser;
15
-
16 14
 use PhpParser\Parser;
17
-use PhpParser\Lexer;
18 15
 use PhpParser\PrettyPrinter\Standard as PrettyPrinter;
19
-
20 16
 use Symfony\Component\EventDispatcher\EventDispatcher;
21 17
 
22 18
 use \RegexIterator;
Please login to merge, or discard this patch.
tests/expected/Namespaces.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,2 +1,3 @@
 block discarded – undo
1 1
 <?php
2
-namespace namespaceA; class classA { } namespace namespaceC\namespaceD; class classD { } namespace namespaceB; use namespaceA\classA as spf0f507; use namespaceC\namespaceD as sp63627e; class classB { private $spa26210; private $sp2e1034; public function __construct() { $this->spa26210 = new spf0f507(); $this->sp2e1034 = new sp63627e\classD(); } }
3 2
\ No newline at end of file
3
+namespace namespaceA; class classA { } namespace namespaceC\namespaceD; class classD { } namespace namespaceB; use namespaceA\classA as spf0f507;
4
+use namespaceC\namespaceD as sp63627e; class classB { private $spa26210; private $sp2e1034; public function __construct() { $this->spa26210 = new spf0f507(); $this->sp2e1034 = new sp63627e\classD(); } }
4 5
\ No newline at end of file
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Node/Visitor/ScramblePrivateProperty.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * Before node traversal
58 58
      *
59 59
      * @param  Node[] $nodes
60
-     * @return array
60
+     * @return Node[]
61 61
      **/
62 62
     public function beforeTraverse(array $nodes)
63 63
     {
Please login to merge, or discard this patch.