Completed
Branch master (8b2982)
by Marcel
16:47
created
src/GenerateDiagramCommand.php 1 patch
Unused Use Statements   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -2,23 +2,23 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\ErdGenerator;
4 4
 
5
-use ReflectionClass;
6
-use ReflectionMethod;
7
-use PhpParser\NodeTraverser;
8
-use PhpParser\ParserFactory;
9
-use PhpParser\Node\Stmt\Class_;
5
+use BeyondCode\ErdGenerator\Model as GraphModel;
10 6
 use Illuminate\Console\Command;
11
-use phpDocumentor\GraphViz\Graph;
12
-use Illuminate\Support\Collection;
13
-use Illuminate\Filesystem\Filesystem;
14 7
 use Illuminate\Database\Eloquent\Model;
15
-use PhpParser\NodeVisitor\NameResolver;
16
-use BeyondCode\ErdGenerator\Model as GraphModel;
17
-use Illuminate\Database\Eloquent\Relations\Relation;
18 8
 use Illuminate\Database\Eloquent\Relations\BelongsTo;
19
-use Illuminate\Database\Eloquent\Relations\MorphToMany;
20
-use Illuminate\Database\Eloquent\Relations\HasOneOrMany;
21 9
 use Illuminate\Database\Eloquent\Relations\BelongsToMany;
10
+use Illuminate\Database\Eloquent\Relations\HasOneOrMany;
11
+use Illuminate\Database\Eloquent\Relations\MorphToMany;
12
+use Illuminate\Database\Eloquent\Relations\Relation;
13
+use Illuminate\Filesystem\Filesystem;
14
+use Illuminate\Support\Collection;
15
+use PhpParser\NodeTraverser;
16
+use PhpParser\NodeVisitor\NameResolver;
17
+use PhpParser\Node\Stmt\Class_;
18
+use PhpParser\ParserFactory;
19
+use ReflectionClass;
20
+use ReflectionMethod;
21
+use phpDocumentor\GraphViz\Graph;
22 22
 
23 23
 class GenerateDiagramCommand extends Command
24 24
 {
Please login to merge, or discard this patch.
src/GraphBuilder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\ErdGenerator;
4 4
 
5
-use phpDocumentor\GraphViz\Graph;
6 5
 use Illuminate\Support\Collection;
6
+use phpDocumentor\GraphViz\Graph;
7 7
 use phpDocumentor\GraphViz\Node;
8 8
 
9 9
 class GraphBuilder
Please login to merge, or discard this patch.