noverify icon indicating copy to clipboard operation
noverify copied to clipboard

False positive array access

Open i582 opened this issue 4 years ago • 0 comments

Code Example

class Element {}

function f()
{
   $result = [];
   $returnArray = true;
   $result[] = new Element();
  
   return $returnArray ? $result : $result[0];
}

Actual Behavior

<critical> ERROR   arrayAccess: Array access to non-array type \Element|\Element[] at C:/projects/noverify/example/index.php:14
  return $returnArray ? $result : $result[0];
                                  ^^^^^^^

Expected Behavior

No warnings.

i582 avatar Aug 09 '20 18:08 i582