File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
namespace Tymon \JWTAuth \Http \Parser ;
13
13
14
+ use Illuminate \Contracts \Encryption \DecryptException ;
14
15
use Illuminate \Http \Request ;
15
16
use Illuminate \Support \Facades \Crypt ;
16
- use Illuminate \Contracts \Encryption \DecryptException ;
17
17
use Tymon \JWTAuth \Contracts \Http \Parser as ParserContract ;
18
18
19
19
class Cookies implements ParserContract
Original file line number Diff line number Diff line change 11
11
12
12
namespace Tymon \JWTAuth \Test \Http ;
13
13
14
+ use Illuminate \Contracts \Encryption \DecryptException ;
14
15
use Illuminate \Http \Request ;
15
16
use Illuminate \Routing \Route ;
16
17
use Illuminate \Support \Facades \Crypt ;
17
- use Illuminate \Contracts \Encryption \DecryptException ;
18
18
use Mockery ;
19
19
use Tymon \JWTAuth \Contracts \Http \Parser as ParserContract ;
20
20
use Tymon \JWTAuth \Http \Parser \AuthHeaders ;
@@ -334,7 +334,7 @@ public function it_should_has_no_token_from_a_invalid_encrypted_cookie()
334
334
->andThrow (new DecryptException ());
335
335
336
336
$ this ->assertSame ($ parser ->parseToken (), null );
337
- $ this ->assertTrue (!$ parser ->hasToken ());
337
+ $ this ->assertTrue (! $ parser ->hasToken ());
338
338
}
339
339
340
340
/** @test */
You can’t perform that action at this time.
0 commit comments