Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. class Product
  6. {
  7. producted $name;
  8.  
  9. public function_construct($name)
  10. {
  11. $this->name = $name;
  12. }
  13.  
  14. public function name()
  15. {
  16. return $this->name;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement