Skip to content

Commit a0091f8

Browse files
optmize error fixed
1 parent e8a194a commit a0091f8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/SqliteCacheProvider.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
use Illuminate\Support\Facades\Cache;
66
use Illuminate\Support\ServiceProvider;
7+
use Iqbal\SqliteCache\commands\SqliteCacheTable;
8+
use Iqbal\SqliteCache\commands\SqliteCacheInstall;
79

810
class SqliteCacheProvider extends ServiceProvider
911
{
@@ -16,8 +18,8 @@ public function register()
1618
{
1719
if ($this->app->runningInConsole()) {
1820
$this->commands([
19-
Commands\SqliteCacheInstall::class,
20-
Commands\SqliteCacheTable::class
21+
SqliteCacheInstall::class,
22+
SqliteCacheTable::class
2123
]);
2224
}
2325
}

0 commit comments

Comments
 (0)