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 ( b5c48b...4c17a0 )
by Maurice
05:33
created
src/Naneau/Obfuscator/Console/Command/ObfuscateCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,10 +9,8 @@
 block discarded – undo
9 9
 namespace Naneau\Obfuscator\Console\Command;
10 10
 
11 11
 use Naneau\Obfuscator\Container;
12
-
13 12
 use Naneau\Obfuscator\Obfuscator;
14 13
 use Naneau\Obfuscator\Obfuscator\Event\File as FileEvent;
15
-
16 14
 use Symfony\Component\Console\Command\Command;
17 15
 use Symfony\Component\Console\Input\InputArgument;
18 16
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Node/Visitor/ScramblePrivateMethod.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -11,16 +11,11 @@
 block discarded – undo
11 11
 
12 12
 use Naneau\Obfuscator\Node\Visitor\TrackingRenamerTrait;
13 13
 use Naneau\Obfuscator\Node\Visitor\SkipTrait;
14
-
15 14
 use Naneau\Obfuscator\Node\Visitor\Scrambler as ScramblerVisitor;
16
-use Naneau\Obfuscator\StringScrambler;
17
-
18 15
 use PhpParser\Node;
19
-
20 16
 use PhpParser\Node\Stmt\Class_ as ClassNode;
21 17
 use PhpParser\Node\Stmt\ClassMethod;
22 18
 use PhpParser\Node\Expr\MethodCall;
23
-
24 19
 use PhpParser\Node\Expr\Variable;
25 20
 
26 21
 /**
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Node/Visitor/ScramblePrivateProperty.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -11,19 +11,13 @@
 block discarded – undo
11 11
 
12 12
 use Naneau\Obfuscator\Node\Visitor\TrackingRenamerTrait;
13 13
 use Naneau\Obfuscator\Node\Visitor\SkipTrait;
14
-
15 14
 use Naneau\Obfuscator\Node\Visitor\Scrambler as ScramblerVisitor;
16 15
 use Naneau\Obfuscator\StringScrambler;
17
-
18 16
 use PhpParser\Node;
19
-
20 17
 use PhpParser\Node\Stmt\Class_ as ClassNode;
21 18
 use PhpParser\Node\Stmt\Property;
22
-
23 19
 use PhpParser\Node\Expr\PropertyFetch;
24 20
 
25
-use PhpParser\Node\Expr\Variable;
26
-
27 21
 /**
28 22
  * ScramblePrivateProperty
29 23
  *
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Node/Visitor/Scrambler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace Naneau\Obfuscator\Node\Visitor;
10 10
 
11 11
 use Naneau\Obfuscator\StringScrambler;
12
-
13 12
 use PhpParser\NodeVisitorAbstract;
14 13
 use PhpParser\Node;
15 14
 
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Node/Visitor/ScrambleUse.php 1 patch
Unused Use Statements   -10 removed lines patch added patch discarded remove patch
@@ -11,29 +11,19 @@
 block discarded – undo
11 11
 
12 12
 use Naneau\Obfuscator\Node\Visitor\TrackingRenamerTrait;
13 13
 use Naneau\Obfuscator\Node\Visitor\SkipTrait;
14
-
15 14
 use Naneau\Obfuscator\Node\Visitor\Scrambler as ScramblerVisitor;
16
-
17 15
 use PhpParser\Node;
18
-
19 16
 use PhpParser\Node\Name;
20
-use PhpParser\Node\Name\FullyQualified;
21
-
22 17
 use PhpParser\Node\Param;
23
-
24 18
 use PhpParser\Node\Stmt\Class_ as ClassStatement;
25 19
 use PhpParser\Node\Stmt\Use_ as UseStatement;
26
-use PhpParser\Node\Stmt\UseUse as UseUseStatement;
27 20
 use PhpParser\Node\Stmt\StaticVar;
28
-
29 21
 use PhpParser\Node\Expr\ClassConstFetch;
30 22
 use PhpParser\Node\Expr\StaticCall;
31 23
 use PhpParser\Node\Expr\StaticPropertyFetch;
32 24
 use PhpParser\Node\Expr\New_ as NewExpression;
33 25
 use PhpParser\Node\Expr\Instanceof_ as InstanceOfExpression;
34 26
 
35
-use PhpParser\Node\Expr\Variable;
36
-
37 27
 /**
38 28
  * ScrambleUse
39 29
  *
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Node/Visitor/ScrambleVariable.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,10 +11,7 @@
 block discarded – undo
11 11
 
12 12
 use Naneau\Obfuscator\Node\Visitor\Scrambler as ScramblerVisitor;
13 13
 use Naneau\Obfuscator\StringScrambler;
14
-
15
-use PhpParser\NodeVisitorAbstract;
16 14
 use PhpParser\Node;
17
-use PhpParser\Node\Stmt;
18 15
 use PhpParser\Node\Param;
19 16
 use PhpParser\Node\Expr\Variable;
20 17
 use PhpParser\Node\Stmt\Catch_ as CatchStatement;
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Obfuscator.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -9,13 +9,9 @@
 block discarded – undo
9 9
 namespace Naneau\Obfuscator;
10 10
 
11 11
 use Naneau\Obfuscator\Obfuscator\Event\File as FileEvent;
12
-
13 12
 use PhpParser\NodeTraverserInterface as NodeTraverser;
14
-
15 13
 use PhpParser\Parser;
16
-use PhpParser\Lexer;
17 14
 use PhpParser\PrettyPrinter\Standard as PrettyPrinter;
18
-
19 15
 use Symfony\Component\EventDispatcher\EventDispatcher;
20 16
 
21 17
 use \RegexIterator;
Please login to merge, or discard this patch.
src/Naneau/Obfuscator/Container.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace Naneau\Obfuscator\Node\Visitor;
10 10
 
11 11
 use Naneau\Obfuscator\StringScrambler;
12
-
13 12
 use PhpParser\NodeVisitorAbstract;
14 13
 use PhpParser\Node;
15 14
 
Please login to merge, or discard this patch.