Skip to content

Instantly share code, notes, and snippets.

@dubgeiser
Created May 19, 2011 12:44
Show Gist options
  • Select an option

  • Save dubgeiser/980655 to your computer and use it in GitHub Desktop.

Select an option

Save dubgeiser/980655 to your computer and use it in GitHub Desktop.
Properties
<?php
function property() {
if (func_num_args()) {
$this->property = func_get_arg(0);
} else {
return $this->property;
}
return $this;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment