Skip to content

Instantly share code, notes, and snippets.

@fideloper
Created March 9, 2014 19:33
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save fideloper/9453233 to your computer and use it in GitHub Desktop.
Save fideloper/9453233 to your computer and use it in GitHub Desktop.
Trait for making protected/private attributes "gettable", leaving "setting" the attributes a matter of business logic to be implemented.
<?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;
}
}
}
@IsraelOrtuno
Copy link

Using this for testing?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment