Skip to content

Commit 84af5af

Browse files
committed
Fix Redis Namespace
1 parent 59578c6 commit 84af5af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/MakeRedisRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function handle(): int
7979

8080
// Initialize Redis Repository
8181
$redisRepositoryContent = "<?php\n\nnamespace $redisRepositoryNamespace\\$entityName;\n\n";
82-
$redisRepositoryContent .= "use App\Models\Repositories\RedisRepository;\n\n";
82+
$redisRepositoryContent .= "use Nanvaie\DatabaseRepository\Models\Repository\RedisRepository;\n\n";
8383
$redisRepositoryContent .= "class $redisRepositoryName extends RedisRepository\n{";
8484
$redisRepositoryContent .= "}";
8585

0 commit comments

Comments
 (0)