Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/maniphest/storage/ManiphestDAO.php
12256 views
1
<?php
2
3
abstract class ManiphestDAO extends PhabricatorLiskDAO {
4
5
public function getApplicationName() {
6
return 'maniphest';
7
}
8
9
}
10
11