为简单起见,我有这些功能。
/**
* @param array
*/
function master($options) {
if (!empty($options["post_function"])) {
form_callables($options["post_function"], $data);
}
}
/**
* @param callable $function
* @param $data
*/
function form_callables(callable $function, $data) {
if (is_callable($function)) {
call_user_func($function, $data);
} else {
fusion_stop("Custom function could not be found.");
}
}
现在,如果我这样使用它们。
master( array( "post_function", "my_function"));
/**
What do I need to doc here so that PhpStorm can show usages of either master or form_callables?
*/
function my_function() {
echo "OK";
}
我的问题是 my_function 没有显示任何用法。我试过@see
, @mixin
, @uses
, PhpStorm 仍然显示为灰色并且在所有地方都没有使用。
我该如何解决这个问题?