Advertisement
Guest User

Untitled

a guest
Jun 28th, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Input:
  2. class Name
  3. {
  4. public function someFunction()
  5. {
  6. // Some code here
  7. $variable = '';
  8. $other = '';
  9. }
  10. }
  11.  
  12. Output:
  13. class Name
  14. {
  15. \tpublic function someFunction()
  16. \t{
  17. \t\t// Some code here
  18. \t\t$variable = '';
  19. \t\t$other = '';
  20. \t}
  21. }
  22. (note that the spaces between $other and = have stayed the same
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement