Captcha icon indicating copy to clipboard operation
Captcha copied to clipboard

Error when calling build

Open kargirwar opened this issue 2 years ago • 1 comments

I am getting this:

"PHP message: PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in vendor/gregwar/captcha/CaptchaBuilder.php:333"

The calling code is just this:

$builder = new CaptchaBuilder;
$builder->build();

PHP version 8.0.13

kargirwar avatar Dec 14 '21 09:12 kargirwar

Hi,

i have debugged the code. There is missing font color. To fix it use following:

$builder = new CaptchaBuilder(); $builder->setTextColor(255, 255, 255); $builder->build();

mrkaminski avatar Sep 26 '22 12:09 mrkaminski