1

为简单起见,我有这些功能。

/**
* @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 仍然显示为灰色并且在所有地方都没有使用。

我该如何解决这个问题?

4

1 回答 1

1

不幸的是,我看不到更好的解决方案,而不是

/**
 * @uses \my_function()
 */
master(["post_function", "my_function"]);
于 2020-09-22T13:12:24.950 回答