Skip to content

Commit

Permalink
Applied PSR-12 code lint fixes to broken test files.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDWaller committed Nov 21, 2019
1 parent 2cf470a commit 7072ad3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/Helper/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RequestTest extends TestCase
'wIjoxNTczNzE2NDA3LCJpYXQiOjE1NzM3MTU1MDcsInVzZXJfaWQiOiIzMTM4NjE2MiJ9.' .
'9Es0wWdByOQAU8WfcufxgRa9GEYwLefhRzclwWcgVCQ';

/**
/**
* @covers PsrJwt\Helper\Request
*/
public function testRequest()
Expand All @@ -26,7 +26,7 @@ public function testRequest()
$this->assertInstanceOf(Request::class, $request);
}

/**
/**
* @covers PsrJwt\Helper\Request::getParsedToken
* @uses PsrJwt\Factory\Jwt
* @uses PsrJwt\Parser\Bearer
Expand Down
2 changes: 1 addition & 1 deletion tests/Parser/ParseExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ParseExceptionTest extends TestCase
{
/**
/**
* @covers PsrJwt\Parser\ParseException
*/
public function testParseException()
Expand Down
6 changes: 3 additions & 3 deletions tests/Parser/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class RequestTest extends TestCase
{
/**
/**
* @covers PsrJwt\Parser\Request
* @uses PsrJwt\Parser\Parse
*/
Expand All @@ -23,7 +23,7 @@ public function testRequest()
$this->assertInstanceOf(Request::class, $request);
}

/**
/**
* @covers PsrJwt\Parser\Request::parse
* @uses PsrJwt\Parser\Request
* @uses PsrJwt\Parser\Bearer
Expand All @@ -48,7 +48,7 @@ public function testParse()
$this->assertSame('abcdef.123.abcdef', $request->parse($httpRequest, 'jwt'));
}

/**
/**
* @covers PsrJwt\Parser\Request::parse
* @uses PsrJwt\Parser\Request
* @uses PsrJwt\Parser\Bearer
Expand Down

0 comments on commit 7072ad3

Please sign in to comment.