diff --git a/test/BuilderTest.php b/test/BuilderTest.php index 48491639..4ebf697e 100644 --- a/test/BuilderTest.php +++ b/test/BuilderTest.php @@ -11,6 +11,7 @@ use Lcobucci\JWT\Builder; use Lcobucci\JWT\Signer; use Lcobucci\JWT\Signature; + /** * @author Luís Otávio Cobucci Oblonczyk * @since 0.1.0 diff --git a/test/TokenTest.php b/test/TokenTest.php index ca51b4d6..a0cbfe32 100644 --- a/test/TokenTest.php +++ b/test/TokenTest.php @@ -194,7 +194,7 @@ public function toStringMustReturnEncodedData() $this->assertEquals('test.test.test', (string) $token); } - /** + /** * Fill the mock expectations */ protected function createMockExpectations($signature = null) @@ -226,5 +226,4 @@ protected function createMockExpectations($signature = null) ->willReturn('test'); } } - }