Created
March 9, 2014 19:33
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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
Using this for testing?