Select the types of activity you want to include in your feed.
@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
···47474848 final public function setConsole($console) {
4949 $this->console = $console;
5050+ return $this;
5051 }
51525253 final public function buildController() {
···11<?php
2233/*
44- * Copyright 2011 Facebook, Inc.
44+ * Copyright 2012 Facebook, Inc.
55 *
66 * Licensed under the Apache License, Version 2.0 (the "License");
77 * you may not use this file except in compliance with the License.
···24242525 public function setEvents(array $events) {
2626 $this->events = $events;
2727+ return $this;
2728 }
28292930 public function setCombinedLog($is_combined) {
3031 $this->combinedLog = $is_combined;
3232+ return $this;
3133 }
32343335 public function setUser(PhabricatorUser $user) {
···11<?php
2233/*
44- * Copyright 2011 Facebook, Inc.
44+ * Copyright 2012 Facebook, Inc.
55 *
66 * Licensed under the Apache License, Version 2.0 (the "License");
77 * you may not use this file except in compliance with the License.
···23232424 public function setDaemonLogs(array $daemon_logs) {
2525 $this->daemonLogs = $daemon_logs;
2626+ return $this;
2627 }
27282829 public function setUser(PhabricatorUser $user) {
···109109110110 public function setNeedsBlame($needs_blame) {
111111 $this->needsBlame = $needs_blame;
112112+ return $this;
112113 }
113114114115 public function getNeedsBlame() {
···31313232 public function setLabel($val) {
3333 $this->label = $val;
3434+ return $this;
3435 }
35363637 public function getLabel() {
···39404041 public function setAuxiliaryKey($val) {
4142 $this->auxiliaryKey = $val;
4343+ return $this;
4244 }
43454446 public function getAuxiliaryKey() {
···47494850 public function setCaption($val) {
4951 $this->caption = $val;
5252+ return $this;
5053 }
51545255 public function getCaption() {
···55585659 public function setValue($val) {
5760 $this->value = $val;
6161+ return $this;
5862 }
59636064 public function getValue() {
···6973 return false;
7074 }
71757272- public function setType($val)
7373- {
7676+ public function setType($val) {
7477 $this->type = $val;
7878+ return $this;
7579 }
76807781 public function getType() {
···11<?php
2233/*
44- * Copyright 2011 Facebook, Inc.
44+ * Copyright 2012 Facebook, Inc.
55 *
66 * Licensed under the Apache License, Version 2.0 (the "License");
77 * you may not use this file except in compliance with the License.
···3939 final public function setResourceGraph(array $graph) {
4040 $this->resourceGraph = $graph;
4141 $this->graphSet = true;
4242+ return $this;
4243 }
43444445 private function getResourceGraph() {
···11<?php
2233/*
44- * Copyright 2011 Facebook, Inc.
44+ * Copyright 2012 Facebook, Inc.
55 *
66 * Licensed under the Apache License, Version 2.0 (the "License");
77 * you may not use this file except in compliance with the License.
···79798080 public function setPackageMap($package_map) {
8181 $this->packageMap = $package_map;
8282+ return $this;
8283 }
83848485 public function packageResources(array $resolved_map) {
···11<?php
2233/*
44- * Copyright 2011 Facebook, Inc.
44+ * Copyright 2012 Facebook, Inc.
55 *
66 * Licensed under the Apache License, Version 2.0 (the "License");
77 * you may not use this file except in compliance with the License.
···22222323 public function setActions(array $actions) {
2424 $this->actions = $actions;
2525+ return $this;
2526 }
26272728 public function render() {