Completed
Pull Request — master (#24)
by
unknown
26:22 queued 11:24
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/Models/Experiment.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Ben182\AbTesting\Models;
4 4
 
5 5
 use Ben182\AbTesting\AbTestingFacade;
6
-use Illuminate\Database\Eloquent\Model;
7 6
 use Ben182\AbTesting\Events\ExperimentNewVisitor;
7
+use Illuminate\Database\Eloquent\Model;
8 8
 
9 9
 class Experiment extends Model
10 10
 {
Please login to merge, or discard this patch.
src/Models/Goal.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Ben182\AbTesting\Models;
4 4
 
5 5
 use Ben182\AbTesting\AbTestingFacade;
6
-use Illuminate\Database\Eloquent\Model;
7 6
 use Ben182\AbTesting\Events\GoalCompleted;
7
+use Illuminate\Database\Eloquent\Model;
8 8
 
9 9
 class Goal extends Model
10 10
 {
Please login to merge, or discard this patch.