Skip to content

Commit

Permalink
fix examples of ignored_key_prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHoste committed Oct 9, 2019
1 parent 8cb0a5f commit bbe6b5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ For example:
return [
...
'ignored_key_prefixes' => [
'auth', // ignore the whole auth.php file.
'auth.guards', // ignore the "guards" subtree in auth.php file.
'subfolder/more', // ignore the whole subfolder/more.php file.
'validation', // ignore the whole validation.php file.
'validation.custom', // ignore the "custom" subtree in validation.php file.
'subfolder/more', // ignore the whole subfolder/more.php file.
],
...
];
Expand Down
6 changes: 3 additions & 3 deletions config/translation.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
| # Ignored PHP key prefixes.
|--------------------------------------------------------------------------
|
| Ex: * 'auth': ignore the whole auth.php file.
| * 'auth.guards': ignore the "guards" subtree in auth.php file.
| * 'subfolder/more': ignore the whole subfolder/more.php file.
| Ex: * 'validation': ignore the whole validation.php file.
| * 'validation.custom': ignore the "custom" subtree in validation.php file.
| * 'subfolder/more': ignore the whole subfolder/more.php file.
|
*/
'ignored_key_prefixes' => [],
Expand Down

0 comments on commit bbe6b5b

Please sign in to comment.