We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c00886 commit a4c5fb6Copy full SHA for a4c5fb6
src/DumbPasswordServiceProvider.php
@@ -36,7 +36,7 @@ class DumbPasswordServiceProvider extends ServiceProvider
36
*/
37
public function boot()
38
{
39
- Validator::extend('dumbpwd', function ($attribute, $value, $parameters, $validator) {
+ Validator::extend('dumbpwd', function ($attribute, $value, $parameters, $validator) {
40
$path = realpath(__DIR__ . '/../resources/config/passwordlist.txt');
41
$cache_key = md5_file($path);
42
$data = Cache::rememberForever('dumbpwd_list_' . $cache_key, function () use ($path) {
0 commit comments