HosipLan

Untitled

Apr 7th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. function factory() {
  2.     return new Something;
  3. }
  4.  
  5. $var = factory();
  6.  
  7. // vs
  8.  
  9. function init(Something $s) {
  10.     $s->inicializace = 1 + 1;
  11. }
  12.  
  13. Something $var;
  14. init($var);
Advertisement
Add Comment
Please, Sign In to add comment