Guest User

Untitled

a guest
Nov 23rd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function balance($authUser = null) {
  2. // do stuff
  3. }
  4.  
  5. $authUser = isset($authUser) ? $authUser : null;
  6.  
  7. if($balance($authUser) {
  8. // do stuff
  9. }
  10.  
  11. if(balance(isset($authUser))) {
  12. // do stuff
  13. }
Add Comment
Please, Sign In to add comment