repo.or.cz
/
phabricator.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git]
/
src
/
applications
/
project
/
trigger
/
PhabricatorProjectTriggerRuleRecord.php
blob
da36d9a4d86ddf337fcc0560dae3401da7f502f4
1
<
?php
2
3
final class
PhabricatorProjectTriggerRuleRecord
4
extends
Phobject
{
5
6
private
$type
;
7
private
$value
;
8
9
public function
setType
(
$type
) {
10
$this
->
type
=
$type
;
11
return
$this
;
12
}
13
14
public function
getType
() {
15
return
$this
->
type
;
16
}
17
18
public function
setValue
(
$value
) {
19
$this
->
value
=
$value
;
20
return
$this
;
21
}
22
23
public function
getValue
() {
24
return
$this
->
value
;
25
}
26
27
}