Konsolidierter, bereinigter Stand der Wissensbasis (docs/). Frischer Wurzel-Commit, um urheberrechtlich problematische Volltexte aus der Historie zu entfernen (die bisherige Historie bestand aus einem einzigen Initial-Commit). Enthaltene Änderungen (vgl. docs/_Steuerung/CHANGELOG.md, 2026-05-29): - Copyright-Hygiene: 25 Volltext-/Übersetzungsdateien (Sharp 14 Kap., Wala 11 Kap.) entfernt; je Quelle _Fundstellen-Index.md als Provenienzbeleg; Quellnachweise + Steuerungsdateien angepasst. - Konsistenz-Korrekturen: Reichweite 000-013 (Scorecard-Regeln), Rule-ID MW-WK-DIFF-101, Quellnachweis-Dateiverweis, Dok.000 v2.0.2. - Dateinamen-Normalisierung: Startdatei ohne Leerzeichen. Originale (Wala/Sharp E-Books) privat außerhalb des Repos archiviert. Co-authored-by: Cursor <cursoragent@cursor.com>
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Concerns;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
trait ProfileValidationRules
|
|
{
|
|
/**
|
|
* Get the validation rules used to validate user profiles.
|
|
*
|
|
* @return array<string, array<int, ValidationRule|array<mixed>|string>>
|
|
*/
|
|
protected function profileRules(?int $userId = null): array
|
|
{
|
|
return [
|
|
'name' => $this->nameRules(),
|
|
'email' => $this->emailRules($userId),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules used to validate user names.
|
|
*
|
|
* @return array<int, ValidationRule|array<mixed>|string>
|
|
*/
|
|
protected function nameRules(): array
|
|
{
|
|
return ['required', 'string', 'max:255'];
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules used to validate user emails.
|
|
*
|
|
* @return array<int, ValidationRule|array<mixed>|string>
|
|
*/
|
|
protected function emailRules(?int $userId = null): array
|
|
{
|
|
return [
|
|
'required',
|
|
'string',
|
|
'email',
|
|
'max:255',
|
|
$userId === null
|
|
? Rule::unique(User::class)
|
|
: Rule::unique(User::class)->ignore($userId),
|
|
];
|
|
}
|
|
}
|