Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f6c791c

Browse files
committedOct 4, 2018
#71 working on WAMP + ReactPHP
1 parent 0c719d7 commit f6c791c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎modules/wamp/static-files/wamp/Admin/Tests/TestWampRpcTest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ require([
268268
new TestWampRpcTestController(rpc);
269269

270270
return;
271-
let wamp = new Wamp(true);
271+
let wamp = new WampFacade(true);
272272
try {
273273
wamp.close();
274274
wamp

‎modules/wamp/static-files/wamp/Wamp.js ‎modules/wamp/static-files/wamp/WampFacade.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
class Wamp {
3+
class WampFacade {
44
constructor(debug = false) {
55
this.debug = debug;
66
this.connection = undefined;

‎modules/wamp/views/ifaces/Admin/Tests/TestWampRpcTest.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{{ js('wamp/WampConnection.js') }}
77
{{ js('wamp/WampRequest.js') }}
88
{{ js('wamp/WampApiRequest.js') }}
9-
{{ js('wamp/Wamp.js') }}
9+
{{ js('wamp/WampFacade.js') }}
1010
{{ js('wamp/Admin/Tests/HtmlNodes.js') }}
1111
{{ js('wamp/Admin/Tests/Stopwatch.js') }}
1212
{{ js('wamp/Admin/Tests/TestWampRpcTestResult.js') }}

0 commit comments

Comments
 (0)
Please sign in to comment.