Advertisement
Guest User

Untitled

a guest
Dec 10th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. class Foo
  3. {
  4.     public $foo;
  5.  
  6.     function __construct()
  7.     {
  8.         $this->foo = new Foo();
  9.     }
  10.  
  11.     function do_something()
  12.     {
  13.         $this->foo->do_foobar();
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement