1
0
Fork 0

replace is_null with === null

pull/547/head
Philip Nelson 2017-12-05 10:36:48 +11:00
parent 5db2db00eb
commit a1347dbfee
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ class SignatureHelpProvider
++$i;
}
}
if (is_null($found)) {
if ($found === null) {
$found = $i;
}
return $found;