Viewing File: /home/ubuntu/code_review/arcanist/src/events/PhutilEvent.php

<?php

/**
 * @concrete-extensible
 */
class PhutilEvent extends Phobject {

  private $type;
  private $data;
  private $stop = false;

  public function __construct($type, array $data = array()) {
    $this->type = $type;
    $this->data = $data;
  }

  public function getType() {
    return $this->type;
  }

  public function getValue($key, $default = null) {
    return idx($this->data, $key, $default);
  }

  public function setValue($key, $value) {
    $this->data[$key] = $value;
    return $this;
  }

  public function stop() {
    $this->stop = true;
    return $this;
  }

  public function isStopped() {
    return $this->stop;
  }

}
Back to Directory File Manager