mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
8756d82cf6
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
24 lines
490 B
PHP
24 lines
490 B
PHP
<?php
|
|
|
|
abstract class ConpherenceWidgetView extends AphrontView {
|
|
|
|
private $conpherence;
|
|
private $updateURI;
|
|
|
|
public function setUpdateURI($update_uri) {
|
|
$this->updateURI = $update_uri;
|
|
return $this;
|
|
}
|
|
public function getUpdateURI() {
|
|
return $this->updateURI;
|
|
}
|
|
|
|
public function setConpherence(ConpherenceThread $conpherence) {
|
|
$this->conpherence = $conpherence;
|
|
return $this;
|
|
}
|
|
public function getConpherence() {
|
|
return $this->conpherence;
|
|
}
|
|
|
|
}
|