PHPDoc无法在PhpStorm中看到定义

时间:2017-02-02 12:40:23

标签: php phpstorm phpdoc

在一个文件中,我创建了一个常量:

print (df[df['name'] == 'Alice'].index[0])
0

之后我试图在另一个php文件中使用PHPDoc中的这个常量:

/**
 * Relative path to author photo used by default.
 * Used when author photo is not loaded.
 * 
 * @const DEFAULT_AVATAR_PATH
 */
define('DEFAULT_AVATAR_PATH', '/images/authors/def_author.png');

所以我可以在PHPStorm中看到蓝色文字:

enter image description here

但是我无法点击它。它没有显示任何内容!

如何解决?

0 个答案:

没有答案