php: Fix director_profile_runme.php

Since 76c2c4675b the fn method is
renamed to c_fn, because `fn` was added as a keyword in PHP 7.4.
This commit is contained in:
Olly Betts 2021-04-20 12:04:02 +12:00
commit f45bf4db23

View file

@ -3,11 +3,11 @@
require "tests.php";
require "director_profile.php";
// No new functions
check::functions(array('b_fn','b_vfi','b_fi','b_fj','b_fk','b_fl','b_get_self','b_vfs','b_fs'));
// No new classes
// New functions
check::functions(array('b_c_fn','b_vfi','b_fi','b_fj','b_fk','b_fl','b_get_self','b_vfs','b_fs'));
// New classes
check::classes(array('A','B'));
// now new vars
// No new vars
check::globals(array());
class MyB extends B {