Help for this page

Select Code to Download


  1. or download this
    # $object1 has the interface foo
    # $object2 has the interface bar and baz
    ...
            foo(baz);
        }
    }
    
  2. or download this
    $object2->bar;
    $object1->foo($object2->baz);