Skip to content

Commit

Permalink
allow unsetting kerb ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Aug 10, 2023
1 parent 530235b commit abfd1eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KerberosAuth.php
Expand Up @@ -34,7 +34,7 @@ public function getTicket(): ?KerberosTicket {
return $this->ticket;
}

public function setTicket(KerberosTicket $ticket): void {
public function setTicket(?KerberosTicket $ticket): void {
$this->ticket = $ticket;
}

Expand Down

0 comments on commit abfd1eb

Please sign in to comment.