Completed
Pull Request — master (#42)
by James
01:15
created
src/Views/Engines/CompilerEngine.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@
 block discarded – undo
3 3
 namespace Facade\Ignition\Views\Engines;
4 4
 
5 5
 use Exception;
6
-use ReflectionProperty;
7
-use Illuminate\Support\Collection;
8
-use Illuminate\Filesystem\Filesystem;
9
-use Facade\Ignition\Exceptions\ViewException;
10 6
 use Facade\IgnitionContracts\ProvidesSolution;
7
+use Facade\Ignition\Exceptions\ViewException;
11 8
 use Facade\Ignition\Exceptions\ViewExceptionWithSolution;
12
-use Facade\Ignition\Views\Concerns\CollectsViewExceptions;
13 9
 use Facade\Ignition\Views\Compilers\BladeSourceMapCompiler;
10
+use Facade\Ignition\Views\Concerns\CollectsViewExceptions;
11
+use Illuminate\Filesystem\Filesystem;
12
+use Illuminate\Support\Collection;
13
+use ReflectionProperty;
14 14
 
15 15
 class CompilerEngine extends \Illuminate\View\Engines\CompilerEngine
16 16
 {
Please login to merge, or discard this patch.
src/SolutionProviders/ViewNotFoundSolutionProvider.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,18 +2,18 @@
 block discarded – undo
2 2
 
3 3
 namespace Facade\Ignition\SolutionProviders;
4 4
 
5
-use Throwable;
6
-use Illuminate\Support\Arr;
7
-use InvalidArgumentException;
8
-use Illuminate\Support\Facades\View;
9
-use Symfony\Component\Finder\Finder;
10
-use Symfony\Component\Finder\SplFileInfo;
11 5
 use Facade\IgnitionContracts\BaseSolution;
6
+use Facade\IgnitionContracts\HasSolutionsForThrowable;
12 7
 use Facade\Ignition\Exceptions\ViewException;
13
-use Facade\Ignition\Support\StringComparator;
14 8
 use Facade\Ignition\Solutions\CreateViewFileSolution;
15 9
 use Facade\Ignition\Solutions\UpdateViewNameSolution;
16
-use Facade\IgnitionContracts\HasSolutionsForThrowable;
10
+use Facade\Ignition\Support\StringComparator;
11
+use Illuminate\Support\Arr;
12
+use Illuminate\Support\Facades\View;
13
+use InvalidArgumentException;
14
+use Symfony\Component\Finder\Finder;
15
+use Symfony\Component\Finder\SplFileInfo;
16
+use Throwable;
17 17
 
18 18
 class ViewNotFoundSolutionProvider implements HasSolutionsForThrowable
19 19
 {
Please login to merge, or discard this patch.