Merge pull request #61 from Stubbs/master
missing line terminator for getter & setters ... oops.
This commit is contained in:
commit
ab883be764
@ -256,7 +256,7 @@ snippet getset
|
|||||||
*/
|
*/
|
||||||
function get$1()
|
function get$1()
|
||||||
{
|
{
|
||||||
return $this->$_$1
|
return $this->$_$1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -266,5 +266,5 @@ snippet getset
|
|||||||
*/
|
*/
|
||||||
function set$1($$1)
|
function set$1($$1)
|
||||||
{
|
{
|
||||||
$this->_$1 = $$1
|
$this->_$1 = $$1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user