Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Tweet {
  2.  
  3. protected $text;
  4.  
  5. public function __construct($text)
  6. {
  7. $this->text = $text;
  8. }
  9.  
  10. public function __get($property) {
  11. if (property_exists($this, $property)) {
  12. return $this->$property;
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement