@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 22 lines 495 B view raw
1<?php 2 3final class PhabricatorXHPASTParseTree extends PhabricatorXHPASTDAO { 4 5 protected $authorPHID; 6 protected $input; 7 protected $returnCode; 8 protected $stdout; 9 protected $stderr; 10 11 protected function getConfiguration() { 12 return array( 13 self::CONFIG_COLUMN_SCHEMA => array( 14 'authorPHID' => 'phid?', 15 'input' => 'text', 16 'returnCode' => 'sint32', 17 'stdout' => 'text', 18 'stderr' => 'text', 19 ), 20 ) + parent::getConfiguration(); 21 } 22}