Skip to content

Commit 5bf267c

Browse files
daifmamarkitosgv
authored andcommitted
Update README.md (lexik#159)
app/console was moved to bin/console since symfony 3.0
1 parent ad47537 commit 5bf267c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ With the next command you will create a new table to handle your refresh tokens
129129

130130
**Symfony 3 Version:**
131131
```bash
132-
php app/console doctrine:schema:update --force
132+
php bin/console doctrine:schema:update --force
133133

134134
# or make and run a migration
135-
php app/console make:migration
136-
php app/console doctrine:migrations:migrate
135+
php bin/console make:migration
136+
php bin/console doctrine:migrations:migrate
137137
```
138138

139139
**Symfony 4 Version:**
@@ -367,7 +367,7 @@ If you want to revoke all invalid (datetime expired) refresh tokens you can exec
367367

368368
**Symfony 3 Version:**
369369
```bash
370-
php app/console gesdinet:jwt:clear
370+
php bin/console gesdinet:jwt:clear
371371
```
372372

373373
**Symfony 4 Version:**
@@ -379,7 +379,7 @@ Optional argument is datetime, it deletes all tokens smaller than this datetime:
379379

380380
**Symfony 3 Version:**
381381
```bash
382-
php app/console gesdinet:jwt:clear 2015-08-08
382+
php bin/console gesdinet:jwt:clear 2015-08-08
383383
```
384384

385385
**Symfony 4 Version:**
@@ -395,7 +395,7 @@ If you want to revoke a single token you can use this:
395395

396396
**Symfony 3 Version:**
397397
```bash
398-
php app/console gesdinet:jwt:revoke TOKEN
398+
php bin/console gesdinet:jwt:revoke TOKEN
399399
```
400400

401401
**Symfony 4 Version:**

0 commit comments

Comments
 (0)