We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e594e59 commit 41e4a24Copy full SHA for 41e4a24
README.md
@@ -100,6 +100,28 @@ class HelloWorld {
100
}
101
```
102
103
+### Rename method
104
+
105
+``` php
106
+<?php
107
+class HelloWorld {
108
+ public function sayHello() {
109
+ echo $this->sayHello();
110
+ } ↑
111
+}
112
+```
113
114
+`<Leader>rm` in normal mode, specify the new method name
115
116
117
118
119
+ public function newMethodName() {
120
+ echo $this->newMethodName();
121
122
123
124
125
### Extract Use Statement
126
127
``` php
0 commit comments