Forgot the ; line terminator!!

This commit is contained in:
Stuart Grimshaw 2011-12-22 16:29:32 +00:00
parent 9946c23c4f
commit ea8ddb9213

View File

@ -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;
}