We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab0e535 + e868e17 commit 734a8b3Copy full SHA for 734a8b3
UltiSnips/php.snippets
@@ -120,19 +120,19 @@ endsnippet
120
121
snippet gs "PHP Class Getter Setter" b
122
/*
123
- * Getter for ${1/(\w+)\s*;/$1/}
+ * Getter for $1
124
*/
125
-public function get${1/(\w+)\s*;/\u$1/}()
+public function get${1/\w+\s*/\u$0/}()
126
{
127
- return $this->${1/(\w+)\s*;/$1/};$2
+ return $this->$1;$2
128
}
129
130
131
- * Setter for ${1/(\w+)\s*;/$1/}
+ * Setter for $1
132
133
-public function set${1/(\w+)\s*;/\u$1/}($${1/(\w+)\s*;/$1/})
+public function set${1/\w+\s*/\u$0/}($$1)
134
135
- $this->${1/(\w+)\s*;/$1/} = $${1/(\w+)\s*;/$1/};$3
+ $this->$1 = $$1;$3
136
${4:return $this;}
137
138
$0
0 commit comments