Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / herald / group / HeraldGroup.php
blob348ea1d24afc8b6d1e7c314a3f4442f1c713e734
1 <?php
3 abstract class HeraldGroup extends Phobject {
5 abstract public function getGroupLabel();
7 protected function getGroupOrder() {
8 return 1000;
11 public function getSortKey() {
12 return sprintf('A%08d%s', $this->getGroupOrder(), $this->getGroupLabel());