[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/conpherence/view/ -> ConpherenceWidgetView.php (source)

   1  <?php
   2  
   3  abstract class ConpherenceWidgetView extends AphrontView {
   4  
   5    private $conpherence;
   6    private $updateURI;
   7  
   8    public function setUpdateURI($update_uri) {
   9      $this->updateURI = $update_uri;
  10      return $this;
  11    }
  12    public function getUpdateURI() {
  13      return $this->updateURI;
  14    }
  15  
  16    public function setConpherence(ConpherenceThread $conpherence) {
  17      $this->conpherence = $conpherence;
  18      return $this;
  19    }
  20    public function getConpherence() {
  21      return $this->conpherence;
  22    }
  23  
  24  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1