我正在使用PDT在Eclipse Neon中使用Drupal代码,根据Drupal's PHPDoc conventions,我应该使用@param
标记,如下所示:
* @param type $argument
* The name and type of an argument. The description can be longer if necessary,
* and if so, you can wrap it to another line.
即,我应该写@param type $argument
,然后换行,然后用两个空格缩进(这是精确指定的,在链接页面。)
Eclipse似乎不允许这种细粒度的配置。 Eclipse中的PHPDoc选项不允许缩进,如下所示:
* @param array $definition
* The array describing something.
或者我可以选择这个非常宽的缩进:
* @param array $definition
* The array describing something.
无论哪种方式,它都与Drupal惯例不同。现在我无法使用非常有用的Source > Format
命令,因为它会更改整个文件中的注释。
我实际上想要的是:
* @param array $definition
* The array describing something.
在Eclipse的配置中的XML文件中是否存在隐藏的配置参数?