Help for this page

Select Code to Download


  1. or download this
    # this may break/do something unexpected if $self is
    # re-blessed
    ...
    # child through a wordpress-type instantiator
    
    my $obj = $self->wordpress_new();
    
  2. or download this
    my $parent = Foo::Bar->new;
    
    ...
    # totally different
    
    $parent->documented_method(); # got foo and not bar!?