Skip to content

Commit bbe6b5b

Browse files
committed
fix examples of ignored_key_prefixes
1 parent 8cb0a5f commit bbe6b5b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@ For example:
323323
return [
324324
...
325325
'ignored_key_prefixes' => [
326-
'auth', // ignore the whole auth.php file.
327-
'auth.guards', // ignore the "guards" subtree in auth.php file.
328-
'subfolder/more', // ignore the whole subfolder/more.php file.
326+
'validation', // ignore the whole validation.php file.
327+
'validation.custom', // ignore the "custom" subtree in validation.php file.
328+
'subfolder/more', // ignore the whole subfolder/more.php file.
329329
],
330330
...
331331
];

config/translation.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
| # Ignored PHP key prefixes.
1313
|--------------------------------------------------------------------------
1414
|
15-
| Ex: * 'auth': ignore the whole auth.php file.
16-
| * 'auth.guards': ignore the "guards" subtree in auth.php file.
17-
| * 'subfolder/more': ignore the whole subfolder/more.php file.
15+
| Ex: * 'validation': ignore the whole validation.php file.
16+
| * 'validation.custom': ignore the "custom" subtree in validation.php file.
17+
| * 'subfolder/more': ignore the whole subfolder/more.php file.
1818
|
1919
*/
2020
'ignored_key_prefixes' => [],

0 commit comments

Comments
 (0)