With the code below, PHPStan says `Strict comparison using === between int<48, 57>|int<256, max>|numeric-string and 1 will always evaluate to false.`, but that is not true.
if (ctype_digit((string) $mixed)) {
if ($mixed === 1) {
echo '$mixed is 1';
}
}