tests: Add testStrictAction mock

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2025-10-27 12:09:54 -04:00 committed by GitHub
parent 11164e5d90
commit 0d081ce096
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,4 +35,9 @@ class PasswordConfirmationMiddlewareController extends Controller {
#[PasswordConfirmationRequired]
public function testSSO() {
}
#[PasswordConfirmationRequired(strict: true)]
public function testStrictAction(): void {
// intentionally empty; used by PasswordConfirmationMiddleware tests
}
}