Skip to content

Commit db3b240

Browse files
committed
Fix PHP getter and setter UltiSnips snippet
Was broken due to complex regular expressions applied to $1, which made UltiSnips to complain about not knowing it. Simplified the snippet using the already working getter and setter snippets.
1 parent 8c1fadf commit db3b240

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

UltiSnips/php.snippets

+6-6
Original file line numberDiff line numberDiff line change
@@ -120,19 +120,19 @@ endsnippet
120120

121121
snippet gs "PHP Class Getter Setter" b
122122
/*
123-
* Getter for ${1/(\w+)\s*;/$1/}
123+
* Getter for $1
124124
*/
125-
public function get${1/(\w+)\s*;/\u$1/}()
125+
public function get${1/\w+\s*/\u$0/}()
126126
{
127-
return $this->${1/(\w+)\s*;/$1/};$2
127+
return $this->$1;$2
128128
}
129129

130130
/*
131-
* Setter for ${1/(\w+)\s*;/$1/}
131+
* Setter for $1
132132
*/
133-
public function set${1/(\w+)\s*;/\u$1/}($${1/(\w+)\s*;/$1/})
133+
public function set${1/\w+\s*/\u$0/}($$1)
134134
{
135-
$this->${1/(\w+)\s*;/$1/} = $${1/(\w+)\s*;/$1/};$3
135+
$this->$1 = $$1;$3
136136
${4:return $this;}
137137
}
138138
$0

0 commit comments

Comments
 (0)