ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Php​Dox

by oct8cat ST2

PHPDoc comments generator plugin for Sublime Text 2 editor

Details

  • 2012.09.19.09.26.57
  • github.​com
  • github.​com
  • 12 years ago
  • 36 minutes ago
  • 12 years ago

Installs

  • Total 7K
  • Win 3K
  • Mac 2K
  • Linux 2K
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

PhpDox

Why?

This plugin allows you to generate valid PHPDoc comments for your PHP code by pressing just one hotkey, automatically resolving most of required tags.

Current version supports:

  • Classes

    • @uses - If the class is extends another class, parent class name will be resolved.
    • @category, @package - Packaging information.
    • @author - author information, such as name and email (resolves from Sublime environment).
    • @link, @license - additional information.
  • Interfaces - same as classes.

  • Class's methods and properties:

    • @var - Property type. array, string and int types currently supported.
    • @param - Method's arguments. Arguments' names and types will be resolved and aligned correctly.
    • @static - static modifier resolving.
    • @access - Access modifer resolving (public, protected, private supported) - defaults to public.
    • @return - Returned value's type and description (Currently hardcoded to mixed type).

Where?

https://github.com/oct8cat/sublime-phpdox

How?

  • Place cursor to a line with class, interface, method or property declaration.
  • Press F5