Skip to content

Instantly share code, notes, and snippets.

@juukie
Forked from fideloper/Gettable.php
Created March 18, 2014 20:55
Show Gist options
  • Save juukie/9629407 to your computer and use it in GitHub Desktop.
Save juukie/9629407 to your computer and use it in GitHub Desktop.
<?php
trait Gettable {
/**
* Retrieve private attributes.
* Attributes should be protected
* so they cannot be *set* arbitrarily.
* This allows us to *get* them as if they
* were public.
* @param String $key
* @return mixed
*/
public function __get($key)
{
if( property_exists($this, $key) )
{
return $this->$key;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment