First round of refinements on the login system...

There's a lot more to do on the to-do list
This commit is contained in:
Dan Baker 2026-02-22 20:02:09 +00:00
parent 82ed2e3ce2
commit 1b241aeddb
7 changed files with 390 additions and 219 deletions

View file

@ -0,0 +1,14 @@
<?php
namespace App\DTOs;
use App\Models\MagicLoginToken;
readonly class MagicTokenResult
{
public function __construct(
public MagicLoginToken $token,
public string $plainToken,
public string $plainCode,
) {}
}