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
/
diffusion
/
exception
/
DiffusionRefNotFoundException.php
blob
8dda27d0723ad7184d4d677281cca88f0509de5f
1
<
?php
2
3
final class
DiffusionRefNotFoundException
extends
Exception
{
4
5
private
$ref
;
6
7
public function
setRef
(
$ref
) {
8
$this
->
ref
=
$ref
;
9
return
$this
;
10
}
11
12
public function
getRef
() {
13
return
$this
->
ref
;
14
}
15
16
}