Guest User

Untitled

a guest
Jul 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. /**
  3. * Pseudo código PHP exemplificando a variável $this
  4. * @author george.mendonca
  5. */
  6. class Classe
  7. {
  8. encapsulamento $atributo;
  9. ...
  10. encapsulamento function nome_metodo()
  11. {
  12. return $this->atributo;
  13. }
  14. ...
  15. }
Add Comment
Please, Sign In to add comment