Changeset View
Changeset View
Standalone View
Standalone View
src/applications/xhprof/application/PhabricatorXHProfApplication.php
Show All 26 Lines | final class PhabricatorXHProfApplication extends PhabricatorApplication { | ||||
} | } | ||||
public function getRoutes() { | public function getRoutes() { | ||||
return array( | return array( | ||||
'/xhprof/' => array( | '/xhprof/' => array( | ||||
'' => 'PhabricatorXHProfSampleListController', | '' => 'PhabricatorXHProfSampleListController', | ||||
'list/(?P<view>[^/]+)/' => 'PhabricatorXHProfSampleListController', | 'list/(?P<view>[^/]+)/' => 'PhabricatorXHProfSampleListController', | ||||
'profile/(?P<phid>[^/]+)/' => 'PhabricatorXHProfProfileController', | 'profile/(?P<phid>[^/]+)/' => 'PhabricatorXHProfProfileController', | ||||
'import/drop/' => 'PhabricatorXHProfDropController', | |||||
), | ), | ||||
); | ); | ||||
} | } | ||||
} | } |