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
/
conduit
/
protocol
/
exception
/
ConduitMethodDoesNotExistException.php
blob
27c361e05def582e5834e79df8c3e28a40feccf1
1
<
?php
2
3
final class
ConduitMethodDoesNotExistException
4
extends
ConduitMethodNotFoundException
{
5
6
public function
__construct
(
$method_name
) {
7
parent
::
__construct
(
8
pht
(
9
'Conduit API method "
%s
" does not exist.'
,
10
$method_name
));
11
}
12
13
}