Changeset View
Changeset View
Standalone View
Standalone View
src/events/PhutilEvent.php
| <?php | <?php | ||||
| /** | /** | ||||
| * @concrete-extensible | * @concrete-extensible | ||||
| */ | */ | ||||
| class PhutilEvent { | class PhutilEvent extends Phobject { | ||||
| private $type; | private $type; | ||||
| private $data; | private $data; | ||||
| private $stop = false; | private $stop = false; | ||||
| public function __construct($type, array $data = array()) { | public function __construct($type, array $data = array()) { | ||||
| $this->type = $type; | $this->type = $type; | ||||
| $this->data = $data; | $this->data = $data; | ||||
| Show All 25 Lines | |||||