Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woru/options-completion-phpstorm-plugin
https://github.com/woru/options-completion-phpstorm-plugin
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/woru/options-completion-phpstorm-plugin
- Owner: woru
- License: mit
- Created: 2015-06-18T19:10:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-11T12:32:22.000Z (over 7 years ago)
- Last Synced: 2024-04-12T02:26:11.173Z (7 months ago)
- Language: Java
- Size: 11.7 KB
- Stars: 22
- Watchers: 3
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-phpstorm - Options completion plugin - Parses phpDocumentor's hash description and shows supported keys. (Plugins / Utilities)
README
Options completion plugin
====================https://plugins.jetbrains.com/plugin/7822
Parses [phpDocumentor's hash description](https://github.com/phpDocumentor/fig-standards/blob/master/proposed/phpdoc.md#examples-12) and shows supported keys.
```php
class Element {
/**
* Initializes this class with the given options.
*
* @param array $options {
* @var bool $required Whether this element is required
* @var string $label The display name for this element
* }
*/
public function __construct(array $options = array())
{
<...>
}
<...>
}new Element(['label' => 'Bob', '|' ]);
// | ctrl+space will show supported attributes
```