<?php
namespace App\Security\Badge\Backend;
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\BadgeInterface;
class UserStatusBadge implements BadgeInterface
{
private $resolved = false;
public function markResolved(): void
{
$this->resolved = true;
}
public function isResolved(): bool
{
return $this->resolved;
}
}