Help for this page

Select Code to Download


  1. or download this
    $req=Apache::FakeRequest::ViceRaid->new( method::lookup_uri => sub {
        # ... insert what you want it to do
     });
    
  2. or download this
    sub lookup_uri {
        $_[0]->{method::lookup_uri}->(@_);
    }
    
  3. or download this
    sub lookup_uri {
        ($_[0]->{method::lookup_uri} || $_[0]->can(SUPER::lookup_uri))->(@
    +_);
    }