Fehlende ALTCHA-Bibliotheksdateien ergaenzt

This commit is contained in:
2026-09-21 18:08:37 +02:00
parent 605386adcc
commit a1bc69ad6a
@@ -0,0 +1,16 @@
<?php
namespace AltchaOrg\Altcha\V1;
use AltchaOrg\Altcha\V1\Hasher\Algorithm;
class CheckChallengeOptions extends BaseChallengeOptions
{
public function __construct(
Algorithm $algorithm,
string $salt,
int $number,
) {
parent::__construct($algorithm, self::DEFAULT_MAX_NUMBER, null, $salt, $number, []);
}
}