Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/dashboard/interface/PhabricatorDashboardPanelContainerInterface.php
12242 views
1
<?php
2
3
interface PhabricatorDashboardPanelContainerInterface {
4
5
/**
6
* Return a list of Dashboard Panel PHIDs used by this container.
7
*
8
* @return list<phid>
9
*/
10
public function getDashboardPanelContainerPanelPHIDs();
11
12
}
13
14