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
/
phortune
/
view
/
PhortuneOrderView.php
blob
25261aa423cec3029c227487b684ed973f0ba5e8
1
<
?php
2
3
abstract class
PhortuneOrderView
4
extends
AphrontView
{
5
6
private
$order
;
7
8
final public function
setOrder
(
PhortuneCart
$order
) {
9
$this
->
order
=
$order
;
10
return
$this
;
11
}
12
13
final public function
getOrder
() {
14
return
$this
->
order
;
15
}
16
17
}