We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7b9bdd commit 85908f4Copy full SHA for 85908f4
1 file changed
readme.md
@@ -85,16 +85,9 @@ require __DIR__.'/vendor/autoload.php'
85
$debug = new \bdk\Debug(array(
86
'collect' => true,
87
));
88
-$wampPublisher = new \bdk\WampPublisher(array(
89
- 'realm'=>'debug'
90
-));
91
-$outputWamp = new \bdk\Debug\Output\Wamp($debug, $wampPublisher); // see note below
92
-$debug->addPlugin($outputWamp); // or $debug->setCfg('outputAs', $outputWamp); to prevent the default in-page html output
+$debug->addPlugin($debug->routeWamp); // or $debug->setCfg('route', 'wamp'); to only output via the wamp plugin
93
```
94
95
-\* The wamp-plugin classname changed in PHPDebugConsole v2.1.
96
-If you're using pre-2.1 use: `new \bdk\Debug\OutputWamp($debug, $wampPublisher);`
97
-
98
----
99
#### Everything's setup and ready
100
0 commit comments