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