Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class Dog
  2. {
  3. private $name;
  4.  
  5. public function __constructor($name)
  6. {
  7. this->name = $name;
  8. }
  9.  
  10. final public function getName()
  11. {
  12. return this->name;
  13. }
  14. }
  15.  
  16. class SelectMany
  17. {
  18. public function selectManyAndReturn()
  19. {
  20. return selectMany();
  21. }
  22. }
  23.  
  24. class SelectManyApple
  25. {
  26. public function selectManyAndReturn()
  27. {
  28. return selectManyApple();
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement