Guest User

Untitled

a guest
Aug 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. class Form
  4. {
  5. protected $name;
  6.  
  7. public function getName()
  8. {
  9. return $this->name;
  10. }
  11.  
  12. public function setName($name)
  13. {
  14. $this->name = $name;
  15. }
  16. }
Add Comment
Please, Sign In to add comment