value; } /** * Returns the base64 encoded string. */ public function encoded(): string { return base64_encode($this->value); } public function equals(mixed $other): bool { return $other instanceof self && $other->value === $this->value; } public function type(): Type { return Type::Bytes; } }