Skip to content

Commit 712b2ce

Browse files
committed
Small describing text fix
1 parent c9c1bf8 commit 712b2ce

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Version **2.x** is for laravel **6** or **7**. You can use branch `laravel67-rba
3636

3737
Run the composer command:
3838

39-
`composer require itstructure/laravel-rbac "~3.0.12"`
39+
`composer require itstructure/laravel-rbac "~3.0.13"`
4040

4141
### 3.2 Next internal installation steps
4242

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### CHANGE LOG:
22

3+
**3.0.13 July 14, 2024:**
4+
- Small fix for describing text in Commands classes.
5+
36
**3.0.12 March 20, 2024:**
47
- Add support for Laravel 11.
58

src/Commands/DatabaseCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class DatabaseCommand extends Command
1818
* @var string
1919
*/
2020
protected $signature = 'rbac:database '.
21-
'{--force : Overwrite existing views by default. This option can not be used.}'.
21+
'{--force : Overwrite existing files by default.}'.
2222
'{--only= : Run only specific process. Available values: migrate, seed. This option can not be used.}';
2323

2424
/**

src/Commands/PublishCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class PublishCommand extends Command
2020
* @var string
2121
*/
2222
protected $signature = 'rbac:publish '.
23-
'{--force : Overwrite existing files by default. This option can not be used.}'.
23+
'{--force : Overwrite existing files by default.}'.
2424
'{--only= : Publish only specific part. Available parts: config, views, lang, migrations, seeders. This option can not be used.}';
2525

2626
/**

0 commit comments

Comments
 (0)