Completed
Push — master ( 427d1b...7d660e )
by Avtandil
03:12
created
src/MultiLang/Config.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Illuminate\Cache\CacheManager as Cache;
14 14
 use Illuminate\Database\DatabaseManager as Database;
15
-use Illuminate\Http\Request;
16
-use Illuminate\Support\Collection;
17
-use InvalidArgumentException;
18 15
 
19 16
 class Config
20 17
 {
Please login to merge, or discard this patch.
src/MultiLang/Repository.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Illuminate\Cache\CacheManager as Cache;
14 14
 use Illuminate\Database\DatabaseManager as Database;
15
-use Illuminate\Http\Request;
16
-use Illuminate\Support\Collection;
17
-use InvalidArgumentException;
18 15
 use Longman\LaravelMultiLang\Config;
19 16
 
20 17
 class Repository
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      */
67 67
     public function __construct(Config $config, Cache $cache, Database $db)
68 68
     {
69
-        $this->config       = $config;
69
+        $this->config = $config;
70 70
         $this->cache       = $cache;
71 71
         $this->db          = $db;
72 72
 
Please login to merge, or discard this patch.