PhpStorm 2016.2 Help

Creating PHP Documentation Comments

On this page:

Basics

PhpStorm creates stubs of PHPDoc blocks on typing the opening tag /** and pressing Enter or pressing Alt+Insert and appointing the method.function to document.

If this feature is applied to a method or a function, @param, @access, @static, @throws, @return, @var, and @abstract tags are created. In any other places PhpStorm adds an empty documentation stub.

If you need additional PHP-specific tags, PhpStorm provides code completion that suggests tag names that are relevant in the current context. If a certain tag has multiple values, the same code completion provides a list of available values.

In PHPDoc comments, PhpStorm supports formatting options in compliance with ZEND, PEAR, and other standards.

PHPDoc comments in your source code are available for the Quick Documentation Lookup feature and open for review on pressing Ctrl+Q.

To enable or disable generation of documentation comments

  1. Open the Settings dialog box, expand the Editor node, then expand General node, and click the Smart Keys page.
  2. In the Enter section, select or clear Insert documentation comment stub check box.

Generating a PHPDoc block for a method or a function

  1. To invoke PHPDoc block generation, do one of the following:
    • Place the caret before the method or function declaration, type the opening block comment /**, and press Enter.
    • On the context menu anywhere in the editor, choose Generate, then choose Generate PHPDoc blocks, and choose the method or function to generate comments for.
    • Press Alt+Insert, then choose Generate PHPDoc blocks, and choose the method or function to generate comments for.

    PhpStorm analyzes the appointed method or function, where possible extracts the data for method parameters, return values, variables, etc., and on this basis generates a stub of a documentation block.

  2. Describe the listed parameters and return values, where necessary.

Creating tags in a PHPDoc comment block

PhpStorm analyzes the appointed method or function, where possible extracts the data for method parameters, return values, variables, etc., and on this basis generates a stub of a documentation block. If necessary, you can fill in the missing information.

  1. In a PHPDoc block, select the desired empty line and press Ctrl+Space.
  2. Select the relevant tag from the suggestion list.
  3. If the entered tag has several values, press Ctrl+Space and select the desired value from the suggestion list.

Inspecting PHPDoc comments

PhpStorm provides a set of predefined code inspections targeted at PHPDoc blocks. These inspections check whether classes, methods, functions, variables, and constants are supplied with a PHPDoc comment and whether the tags in the comment match the documented item.

  • To enable or disable an inspection:
    1. Open the Settings / Preferences Dialog by pressing Ctrl+Alt+S or by choosing File | Settings for Windows and Linux or PhpStorm | Preferences for OS X, and click Inspections under Editor.
    2. On the Inspections page that opens, expand the PHPDoc node under the PHP node. The list of predefined inspections is displayed.
    3. To enable or disable an inspection, select or clear the check box next to it.
  • To have PhpStorm check that PHPDoc comments are provided for all code constructs of a certain type:
    1. Select the check box next to the Missing PHPDoc Comment inspection.
    2. In the Options area, select the check boxes next to the required code construct type: class, method, function, variable, or constant.
    3. To suppress reporting a Missing PHPDoc Comment error if a method or function does not contain any parameters and/or return values, select the Skip if empty.

Configuring formatting inside PHPDoc comments

You can configure the appearance of PHPDoc comments and the presentation of class names in the Settings dialog box, on the PHPDoc tab of the Code Style. PHP under the Code Style node. Note that the tag for properties is no longer configurable, the default @var tag is inserted automatically. See https://github.com/phpDocumentor/fig-standards/pull/55 for details.

  1. Open the Settings dialog box, click Code Style, then click PHP, and switch to the PHPDoc tab.
  2. Configure the alignment by selecting or clearing the check boxes in the tab.
  3. Specify how you want PhpStorm to present class names for properties, function parameters, return and throws values, etc. by selecting or clearing the Use fully-qualified class names check box.

See Also

Last modified: 24 November 2016