We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 463259a commit eae876aCopy full SHA for eae876a
src/DebugBar/DebugBar.php
@@ -416,12 +416,14 @@ protected function initStackSession()
416
/**
417
* Returns a JavascriptRenderer for this instance
418
*
419
+ * @param stri $baseUrl
420
+ * @param string $basePathng
421
* @return JavascriptRenderer
422
*/
- public function getJavascriptRenderer()
423
+ public function getJavascriptRenderer($baseUrl = null, $basePath = null)
424
{
425
if ($this->jsRenderer === null) {
- $this->jsRenderer = new JavascriptRenderer($this);
426
+ $this->jsRenderer = new JavascriptRenderer($this, $baseUrl, $basePath);
427
}
428
return $this->jsRenderer;
429
0 commit comments