Completed
Branch master (1a71ea)
by Javier
06:23
created
src/Compilers/DbBladeCompiler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Kiroushi\DbBlade\Compilers;
4 4
 
5
-use Illuminate\Config\Repository;
6 5
 use Illuminate\Database\Eloquent\Model;
7 6
 use Illuminate\View\Compilers\BladeCompiler;
8 7
 use Illuminate\View\Compilers\CompilerInterface;
Please login to merge, or discard this patch.
src/DbBladeCompilerServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Illuminate\Filesystem\Filesystem;
7 7
 use Illuminate\Support\Collection;
8 8
 use Illuminate\Support\ServiceProvider;
9
-use Illuminate\View\Engines\CompilerEngine;
10 9
 use Kiroushi\DbBlade\Compilers\DbBladeCompiler;
11 10
 
12 11
 class DbBladeCompilerServiceProvider extends ServiceProvider
Please login to merge, or discard this patch.
src/DbView.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Kiroushi\DbBlade;
4 4
 
5
-use View, Closure, ArrayAccess;
5
+use ArrayAccess;
6 6
 use Illuminate\Contracts\Support\Arrayable;
7 7
 use Illuminate\Contracts\Support\Renderable;
8
-use Illuminate\Config\Repository;
9 8
 use Illuminate\Database\Eloquent\Model;
9
+use View;
10 10
 
11 11
 use Kiroushi\DbBlade\Compilers\DbBladeCompiler;
12 12
 use Kiroushi\DbBlade\Engines\DbBladeCompilerEngine;
Please login to merge, or discard this patch.
src/Factory.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,6 @@
 block discarded – undo
69 69
      * Create a new view instance from the given arguments.
70 70
      *
71 71
      * @param  string  $view
72
-     * @param  string  $path
73 72
      * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
74 73
      * @return \Kiroushi\DbBlade\DbView
75 74
      */
Please login to merge, or discard this patch.
src/Models/DbView.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
     /**
11 11
      * Create a new Eloquent model instance.
12 12
      *
13
-     * @param  array  $attributes
14 13
      * @return void
15 14
      */
16 15
     public function __construct()
Please login to merge, or discard this patch.