|
1 | 1 | <?php |
2 | 2 |
|
3 | | -namespace Kino\Auth\JWT\Auth; |
| 3 | +namespace Codecasts\Auth\JWT\Auth; |
4 | 4 |
|
5 | 5 | use Illuminate\Auth\Events\Attempting; |
6 | 6 | use Illuminate\Auth\Events\Failed; |
|
10 | 10 | use Illuminate\Contracts\Events\Dispatcher; |
11 | 11 | use Symfony\Component\HttpFoundation\Request; |
12 | 12 | use Illuminate\Support\Str; |
13 | | -use Kino\Auth\JWT\Contracts\Auth\Guard as GuardContract; |
| 13 | +use Codecasts\Auth\JWT\Contracts\Auth\Guard as GuardContract; |
14 | 14 | use Lcobucci\JWT\Token; |
15 | 15 |
|
16 | 16 | /** |
@@ -56,7 +56,7 @@ class Guard implements GuardContract |
56 | 56 | /** |
57 | 57 | * The token manager implementation. |
58 | 58 | * |
59 | | - * @var \Kino\Auth\JWT\Contracts\Token\Manager |
| 59 | + * @var \Codecasts\Auth\JWT\Contracts\Token\Manager |
60 | 60 | */ |
61 | 61 | protected $manager; |
62 | 62 |
|
@@ -97,7 +97,7 @@ class Guard implements GuardContract |
97 | 97 | * @param \Illuminate\Contracts\Foundation\Application $app |
98 | 98 | * @param string $name |
99 | 99 | * @param \Illuminate\Contracts\Auth\UserProvider $provider |
100 | | - * @param \Kino\Auth\JWT\Contracts\Token\Manager $manager |
| 100 | + * @param \Codecasts\Auth\JWT\Contracts\Token\Manager $manager |
101 | 101 | */ |
102 | 102 | public function __construct($app, $name, $provider, $manager) |
103 | 103 | { |
@@ -366,7 +366,7 @@ public function logout() |
366 | 366 | /** |
367 | 367 | * Returns the guard instance of the token manager. |
368 | 368 | * |
369 | | - * @return \Kino\Auth\JWT\Contracts\Token\Manager |
| 369 | + * @return \Codecasts\Auth\JWT\Contracts\Token\Manager |
370 | 370 | */ |
371 | 371 | public function manager() |
372 | 372 | { |
|
0 commit comments