<?php
class TfaBadge
{
- private ?\stdClass $customerInput;
-
- public function __construct(
- \stdClass $customerInput,
- ) {
- $this->customerInput = $customerInput;
+ public function __construct(private ?\stdClass $customerInput)
+ {
}
public function markResolved(): void
$this->customerInput = null;
}
}