getAdapter(); $viewer = $adapter->getViewer(); $author_phid = $adapter->getAuthorPHID(); if (!$author_phid) { return array(); } $projects = id(new PhabricatorProjectQuery()) ->setViewer($viewer) ->withMemberPHIDs(array($author_phid)) ->execute(); return mpull($projects, 'getPHID'); } protected function getHeraldFieldStandardType() { return self::STANDARD_PHID_LIST; } protected function getDatasource() { return new PhabricatorProjectDatasource(); } }