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 Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git]
/
src
/
applications
/
files
/
controller
/
PhabricatorFileEditController.php
blob
ea07d7272277c136dd41b07906f0efad28406b18
1
<
?php
2
3
final class
PhabricatorFileEditController
4
extends
PhabricatorFileController
{
5
6
public function
handleRequest
(
AphrontRequest
$request
) {
7
return
id
(
new
PhabricatorFileEditEngine
())
8
->
setController
(
$this
)
9
->
buildResponse
();
10
}
11
12
}