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
/
phpast
/
storage
/
PhabricatorXHPASTParseTree.php
blob
c0e24feb2bd52a83a2eadbb4a93188bc838e1fa6
1
<
?php
2
3
final class
PhabricatorXHPASTParseTree
extends
PhabricatorXHPASTDAO
{
4
5
protected
$authorPHID
;
6
protected
$input
;
7
protected
$returnCode
;
8
protected
$stdout
;
9
protected
$stderr
;
10
11
protected function
getConfiguration
() {
12
return array
(
13
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
14
'authorPHID'
=>
'phid?'
,
15
'input'
=>
'text'
,
16
'returnCode'
=>
'sint32'
,
17
'stdout'
=>
'text'
,
18
'stderr'
=>
'text'
,
19
),
20
)
+ parent
::
getConfiguration
();
21
}
22
}