Author Archives: rustam.vishnyakov

Checking your code with PHP Code Sniffer in PhpStorm 4.0

PhpStorm 4.0 allows you to check your code on the fly with PHP Code Sniffer (phpcs) just by opening a PHP file. The check is triggered every time you change something in the file thus making it extremely easy to … Continue reading

Posted in Announcement | Tagged , , | 24 Comments

New in 4.0: Drupal coding style support

PhpStorm 4.0 contains a bundled predefined coding style for the popular Drupal content management platform. Currently just reformatting your code in PhpStorm removes 99% of errors reported by Drupal coder-review and makes your code fit to Drupal coding standards.

Posted in Feature | Tagged , , | 13 Comments

New in 4.0: Custom code folding regions

This long-awaited feature gives you a possibility to define your own code-folding regions with special line comments.

Posted in Announcement, Feature | Tagged , , , , | 13 Comments

New PHP formatting options in PhpStorm 3.0

Probably some of you have already noticed the changes in PHP code style settings. Putting the new UI look aside, I’d like to focus on new options and briefly explain their meaning and functionality. I hope you find them useful … Continue reading

Posted in Feature | Tagged , , | 9 Comments

New PHPDoc inspections and quick fixes

There is a number of new PHPDoc inspections available in the latest PhpStorm 2.1 EAP builds which allow to find basic problems in PHP code documenting. These new inspections can be turned on/off in Settings|Inspections|PHP|CodeStyle/PHPDoc. Traditionally each inspection has a … Continue reading

Posted in Feature | Tagged , , | 9 Comments

Customizable getter and setter method templates in PhpStorm

Another EAP build of PhpStorm 2.1 comes with bundled templates for PHP getter and setter methods. You can change these templates for your own needs in Settings|File Templates|Code|PHP Getter/Setter Method.

Posted in Feature | Tagged , | 9 Comments

jQuery API documentation at your fingertips

There is a new feature in verison 2.1 of PhpStorm and WebStorm which allows to browse documentation for jQuery methods using the Ctrl+Q shortcut staying in off-line mode. Before you start using it you have to download the API documentation … Continue reading

Posted in Uncategorized | 13 Comments

Mark file as plain text to exclude it from code completion and navigation

Sometimes you may want to exclude just a single file from the project so that code completion and navigation would not work for it. Examples include minified (compressed) PHP/JavaScript files which duplicate the code in other non-compressed files. It is … Continue reading

Posted in Feature | Tagged , , , | 10 Comments

External API Docs Support for Popular JavaScript Frameworks

JavaScript libraries introduced recently are very well accepted by you. And it is just the time to make one step further to ease your work with JavaScript. Now, in the recent 2.0 build, you can open a Web page with … Continue reading

Posted in Feature | Tagged , | 20 Comments