1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-11 09:22:40 +01:00
phorge-phorge/src/applications/differential/storage/DifferentialReviewer.php

28 lines
496 B
PHP
Raw Normal View History

<?php
final class DifferentialReviewer {
protected $reviewerPHID;
protected $status;
protected $diffID;
public function __construct($reviewer_phid, $status, $diff_id = null) {
$this->reviewerPHID = $reviewer_phid;
$this->status = $status;
$this->diffID = $diff_id;
}
public function getReviewerPHID() {
return $this->reviewerPHID;
}
public function getStatus() {
return $this->status;
}
public function getDiffID() {
return $this->diffID;
}
}