Skip to content

Commit

Permalink
Merge pull request #39 from b3none/patch-1
Browse files Browse the repository at this point in the history
Fix syntax of example in README.md
  • Loading branch information
RobDWaller committed Jun 25, 2019
2 parents 6427616 + 845edef commit 387e2ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ This will return a token string on success and throw a `ReallySimpleJWT\Exceptio
use ReallySimpleJWT\Token;

$userId = 12;
$secret = 'sec!ReT423*&'
$secret = 'sec!ReT423*&';
$expiration = time() + 3600;
$issuer = 'localhost'
$issuer = 'localhost';

$token = Token::create($userId, $secret, $expiration, $issuer);
```
Expand Down

0 comments on commit 387e2ce

Please sign in to comment.