Skip to content

Commit bea2283

Browse files
committed
Updates to method signatures.
1 parent fe87768 commit bea2283

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

content/content.debug.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function build() {
4545
return parent::build();
4646
}
4747

48-
protected function buildJump($wrapper) {
48+
protected function buildJump(XMLElement $wrapper) {
4949
$list = new XMLElement('ul');
5050

5151
$list->appendChild($this->buildJumpItem(
@@ -85,7 +85,7 @@ protected function buildJump($wrapper) {
8585
$wrapper->appendChild($list);
8686
}
8787

88-
public function buildContent($wrapper) {
88+
public function buildContent(XMLElement $wrapper) {
8989
$this->addStylesheetToHead(URL . '/extensions/debugdevkit/assets/devkit.css', 'screen', 10);
9090
$this->addScriptToHead(SYMPHONY_URL . '/assets/js/jquery.js', 20);
9191
$this->addScriptToHead(URL . '/extensions/debugdevkit/assets/jquery.scrollto.js', 30);
@@ -121,7 +121,7 @@ public function buildContent($wrapper) {
121121
}
122122
}
123123

124-
protected function appendSource($wrapper, $source, $language = 'xml') {
124+
protected function appendSource(XMLElement $wrapper, $source, $language = 'xml') {
125125
$bitter = new Bitter();
126126
$bitter->loadFormat('symphony');
127127
$bitter->loadLanguage($language);

0 commit comments

Comments
 (0)