Skip to content

Commit

Permalink
Fix some typos. Update readme & plugin description
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Scherbak committed Oct 14, 2016
1 parent 024f470 commit 875de3d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 19 deletions.
32 changes: 24 additions & 8 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,40 @@
<idea-plugin version="2">
<id>com.funivan.phpstorm.refactoring</id>
<name>Refactoring</name>
<version>0.0.4</version>
<vendor email="dev@yfunivan.com" url="http://funivan.com">Funivan</vendor>
<version>0.0.5</version>
<vendor email="dev@funivan.com" url="http://funivan.com">Funivan</vendor>

<description><![CDATA[
Improve your productivity
Improve your productivity.<br><br>
<b>Edit usages</b> - find some statements with PhpStorm and edit it.<br>
<b>Find magic method</b> - detect who is calling your magic methods<br>
<b>Unimport class</b> - revers action of the import class<br>
<br><hr>
Support<br>
<a href="https://github.com/funivan/PhpStorm-Refactoring-Plugin/blob/master/README.md#modules">How to use</a><br>
GitHub : <a href="https://github.com/funivan/PhpStorm-Refactoring-Plugin">funivan/PhpStorm-Refactoring-Plugin</a>
<br>
Have some question?<br>
Twitter: <a href="http://twitter.com/funivan">@funivan</a>
]]></description>

<change-notes><![CDATA[
<h4>0.0.5</h4>
- Rewrite plugin description. Fix typos
<h4>0.0.4</h4>
- Fix null pointers. Optimize code
- Fix null pointers. Optimize code<br>
<h4>0.0.3</h4>
- [Unimport class] Add support for the class alias. Can be invoked on the use statement
- [Unimport class] Add support for the class alias. Can be invoked on the use statement<br>
<h4>0.0.2</h4>
- [Unimport class] invoke action inside php doc comments
- [Find magic methods] run task in background
- [Find magic methods] Find magic properties
- [Unimport class] invoke action inside php doc comments<br>
- [Find magic methods] run task in background<br>
- [Find magic methods] Find magic properties<br>
]]>
</change-notes>

Expand Down
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Refactoring plugin for PhpStorm

# How to install?
1. Download the latest version from [github](https://github.com/funivan/PhpStorm-Refactoring-Plugin/releases).
2. Invoke the action in PHPStorm `Install plugin from disk`.
3. Restart PHPstorm.


## Modules
[EditUsages](src/com/funivan/phpstorm/refactoring/EditUsages/README.md)

[UnimportClass](src/com/funivan/phpstorm/refactoring/UnimportClass/README.md)

[FindMagicMethods](src/com/funivan/phpstorm/refactoring/FindMagicMethods/README.md)
[EditUsages](src/com/funivan/phpstorm/refactoring/EditUsages/README.md) - find some statements with PhpStorm and edit it.

[UnimportClass](src/com/funivan/phpstorm/refactoring/UnimportClass/README.md) - revers action of the import class

[FindMagicMethods](src/com/funivan/phpstorm/refactoring/FindMagicMethods/README.md) - detect who is calling your magic methods

0 comments on commit 875de3d

Please sign in to comment.