URL Shortener 1.0
A Laravel-based URL shortener application
Chargement...
Recherche...
Aucune correspondance
PasswordValidationRules.php
Aller à la documentation de ce fichier.
1<?php
2
3namespace App\Actions\Fortify;
4
5use Illuminate\Validation\Rules\Password;
6
7trait PasswordValidationRules
8{
14 protected function passwordRules(): array
15 {
16 return ['required', 'string', Password::default(), 'confirmed'];
17 }
18}