diff --git a/README.md b/README.md index 9531e0d..9cbc85a 100644 --- a/README.md +++ b/README.md @@ -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. ], ... ]; diff --git a/config/translation.php b/config/translation.php index 604d28f..9ec54c8 100644 --- a/config/translation.php +++ b/config/translation.php @@ -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' => [],