1<?php 2 3interface 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