replace is_null with === null
parent
5db2db00eb
commit
a1347dbfee
|
@ -234,7 +234,7 @@ class SignatureHelpProvider
|
||||||
++$i;
|
++$i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_null($found)) {
|
if ($found === null) {
|
||||||
$found = $i;
|
$found = $i;
|
||||||
}
|
}
|
||||||
return $found;
|
return $found;
|
||||||
|
|
Loading…
Reference in New Issue