Completed
Push — master ( 228cbf...fc4d56 )
by Benjamin
10:07 queued 31s
created
src/Commands/ReportCommand.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 Ben182\AbTesting\Commands;
4 4
 
5
-use Illuminate\Console\Command;
6 5
 use Ben182\AbTesting\Models\Experiment;
6
+use Illuminate\Console\Command;
7 7
 
8 8
 class ReportCommand extends Command
9 9
 {
Please login to merge, or discard this patch.
src/Commands/ResetCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Ben182\AbTesting\Commands;
4 4
 
5
-use Illuminate\Console\Command;
6
-use Ben182\AbTesting\Models\Goal;
7 5
 use Ben182\AbTesting\Models\Experiment;
6
+use Ben182\AbTesting\Models\Goal;
7
+use Illuminate\Console\Command;
8 8
 
9 9
 class ResetCommand extends Command
10 10
 {
Please login to merge, or discard this patch.
src/AbTesting.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Ben182\AbTesting;
4 4
 
5
-use Ben182\AbTesting\Models\Goal;
6
-use Illuminate\Support\Collection;
7
-use Ben182\AbTesting\Models\Experiment;
8
-use Ben182\AbTesting\Events\GoalCompleted;
9 5
 use Ben182\AbTesting\Events\ExperimentNewVisitor;
6
+use Ben182\AbTesting\Events\GoalCompleted;
10 7
 use Ben182\AbTesting\Exceptions\InvalidConfiguration;
8
+use Ben182\AbTesting\Models\Experiment;
9
+use Ben182\AbTesting\Models\Goal;
10
+use Illuminate\Support\Collection;
11 11
 
12 12
 class AbTesting
13 13
 {
Please login to merge, or discard this patch.