Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/calendar/controller/PhabricatorCalendarExportEditController.php
12256 views
1
<?php
2
3
final class PhabricatorCalendarExportEditController
4
extends PhabricatorCalendarController {
5
6
public function handleRequest(AphrontRequest $request) {
7
return id(new PhabricatorCalendarExportEditEngine())
8
->setController($this)
9
->buildResponse();
10
}
11
12
}
13
14