From ea8ddb9213c1e0dae7981223246be551b93ba554 Mon Sep 17 00:00:00 2001 From: Stuart Grimshaw Date: Thu, 22 Dec 2011 16:29:32 +0000 Subject: [PATCH] Forgot the ; line terminator!! --- snippets/php.snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }