From 5a88bac07ca25cb125dd02f7c6e127eb0f3b229b Mon Sep 17 00:00:00 2001 From: Stuart Grimshaw Date: Fri, 23 Dec 2011 09:25:38 +0000 Subject: [PATCH] Small fixes after a days real world usage --- snippets/php.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/php.snippets b/snippets/php.snippets index 4c5696e..dcf02ca 100644 --- a/snippets/php.snippets +++ b/snippets/php.snippets @@ -256,7 +256,7 @@ snippet getset */ function get$1() { - return $this->$_$1; + return $this->_$1; } /**