Viewing File: /home/ubuntu/code_review/arcanist/src/internationalization/__tests__/PhutilPersonTest.php

<?php

final class PhutilPersonTest extends Phobject implements PhutilPerson {

  private $gender = PhutilPerson::GENDER_UNKNOWN;

  public function getGender() {
    return $this->gender;
  }

  public function setGender($value) {
    $this->gender = $value;
    return $this;
  }

  public function __toString() {
    return pht('Test (%s)', $this->gender);
  }

}
Back to Directory File Manager