Completed
Pull Request — master (#38)
by James
01:21
created
src/SolutionProviders/UndefinedVariableSolutionProvider.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Facade\Ignition\SolutionProviders;
4 4
 
5
-use Throwable;
6
-use Facade\IgnitionContracts\Solution;
7 5
 use Facade\IgnitionContracts\BaseSolution;
8
-use Facade\Ignition\Exceptions\ViewException;
9 6
 use Facade\IgnitionContracts\HasSolutionsForThrowable;
7
+use Facade\Ignition\Exceptions\ViewException;
10 8
 use Facade\Ignition\Solutions\MakeViewVariableOptionalSolution;
11 9
 use Facade\Ignition\Solutions\SuggestCorrectVariableNameSolution;
10
+use Throwable;
12 11
 
13 12
 class UndefinedVariableSolutionProvider implements HasSolutionsForThrowable
14 13
 {
Please login to merge, or discard this patch.
src/Solutions/MakeViewVariableOptionalSolution.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 Facade\Ignition\Solutions;
4 4
 
5
-use Illuminate\Support\Facades\Blade;
6 5
 use Facade\IgnitionContracts\RunnableSolution;
6
+use Illuminate\Support\Facades\Blade;
7 7
 
8 8
 class MakeViewVariableOptionalSolution implements RunnableSolution
9 9
 {
Please login to merge, or discard this patch.
src/Solutions/SuggestCorrectVariableNameSolution.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 Facade\Ignition\Solutions;
4 4
 
5
-use Illuminate\Support\Facades\Blade;
6 5
 use Facade\IgnitionContracts\RunnableSolution;
6
+use Illuminate\Support\Facades\Blade;
7 7
 
8 8
 class SuggestCorrectVariableNameSolution implements RunnableSolution
9 9
 {
Please login to merge, or discard this patch.