~ubuntu-branches/ubuntu/vivid/phabricator/vivid-proposed

« back to all changes in this revision

Viewing changes to libphutil/src/utils/__tests__/MFilterTestHelper.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-10-23 20:49:26 UTC
  • mfrom: (0.2.1) (0.1.1)
  • Revision ID: package-import@ubuntu.com-20141023204926-vq80u1op4df44azb
Tags: 0~git20141023-1
Initial release (closes: #703046)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
final class MFilterTestHelper {
 
4
 
 
5
  private $h;
 
6
  private $i;
 
7
  private $j;
 
8
 
 
9
  public function __construct($h_value, $i_value, $j_value) {
 
10
    $this->h = $h_value;
 
11
    $this->i = $i_value;
 
12
    $this->j = $j_value;
 
13
  }
 
14
 
 
15
  public function getH() {
 
16
    return $this->h;
 
17
  }
 
18
 
 
19
  public function getI() {
 
20
    return $this->i;
 
21
  }
 
22
 
 
23
  public function getJ() {
 
24
    return $this->j;
 
25
  }
 
26
 
 
27
}