*/ class CommentChangeStatusEvent extends CommentEvent { /** @var int */ protected $newStatus; /** * @return int */ public function getNewStatus() { return $this->newStatus; } /** * @param int $newStatus */ public function setNewStatus($newStatus) { $this->newStatus = $newStatus; return $this; } }