id = $token->identifier; $this->verifier = $token->hashVerifier(); } public function getId(): string { return $this->id; } /** * Verify an incoming API key against the verifier on this record. * * @param SplitToken $userSuppliedToken * */ public function verify(SplitToken $userSuppliedToken): bool { return $userSuppliedToken->verify($this->verifier); } }