If a function is named beginning with a reserved word in php , then the function list window is not able to search that function if searched for using the whole name or beginning letters.
eg: in php if we name a function like so:
function forgotPassword()
{
// some code
}
Then the above function name cannot be searched for beginning with "f" since it contains a reserved
word "for" of php language
