Skip to content

Instantly share code, notes, and snippets.

@bitwombat
Created March 14, 2018 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitwombat/afcae373e3e3756b0d6e7a7d9a0d3cab to your computer and use it in GitHub Desktop.
Save bitwombat/afcae373e3e3756b0d6e7a7d9a0d3cab to your computer and use it in GitHub Desktop.
public function __set($key, $value)
{
$setter = 'set' . str_replace('_', '', $key);
if (is_callable([$this, $setter])) {
$this->{$setter}($value);
return;
}
.
.
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment