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
/
pholio
/
controller
/
PholioMockListController.php
blob
56d513d9eac9e28018d12de0ddccfaca430ed675
1
<
?php
2
3
final class
PholioMockListController
extends
PholioController
{
4
5
public function
shouldAllowPublic
() {
6
return true
;
7
}
8
9
public function
handleRequest
(
AphrontRequest
$request
) {
10
return
id
(
new
PholioMockSearchEngine
())
11
->
setController
(
$this
)
12
->
buildResponse
();
13
}
14
15
}