PHPDoc无法在PhpStorm中看到定义

In one file I am creating a constant:

/**
 * 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');

After that I am trying to use this constant in PHPDoc in another php file:

/**
 * Relative path to author photo.
 * If there is no photo loaded it contains default author image path ({@see DEFAULT_AVATAR_PATH}).
 *
 * @var string
 */
public $photo_url;

So I can see blue text in my PHPStorm:

enter image description here

However I can't click on it. It shows nothing!

How to fix it?