diff --git a/snippets/php.snippets b/snippets/php.snippets index 961539a..4c5696e 100644 --- a/snippets/php.snippets +++ b/snippets/php.snippets @@ -256,7 +256,7 @@ snippet getset */ function get$1() { - return $this->$_$1 + return $this->$_$1; } /** @@ -266,5 +266,5 @@ snippet getset */ function set$1($$1) { - $this->_$1 = $$1 + $this->_$1 = $$1; }