Hi,

I found this issue related to the variable type after a if test:

<?php

declare(strict_types=1);

namespace Devsense\Builtin;

$result = preg_replace('/test/i', 'TEST', 'test');

if($result !== '') {
    /**
     * Must not raise PHP0406
     */
    $result = ucfirst($result);
}

/**
 * Result must not be a bool with PHP8.x
 */
$result = explode(',', '1,2,3');

You should have an error PHP0406.

Thank you for your fix.

    Write a Reply...