The is_null() is useless now, as it always returns FALSE.
All checks were successful
The build was successful.

This commit is contained in:
2019-03-22 19:29:50 +01:00
parent 135e7c9698
commit 9d7a542aea
2 changed files with 1 additions and 19 deletions

View File

@@ -1120,7 +1120,7 @@ PH7_PRIVATE sxi32 PH7_VmMakeReady(
}
/* Register built-in constants [i.e: PHP_EOL, PHP_OS...] */
PH7_RegisterBuiltInConstant(&(*pVm));
/* Register built-in functions [i.e: is_null(), array_diff(), strlen(), etc.] */
/* Register built-in functions [i.e: array_diff(), strlen(), etc.] */
PH7_RegisterBuiltInFunction(&(*pVm));
/* Initialize and install static and constants class attributes */
SyHashResetLoopCursor(&pVm->hClass);