Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions syntax.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function connectTo($mode) {
*
* @return array
*/
public function handle($match, $state, $pos, &$handler) {
public function handle($match, $state, $pos, Doku_Handler $handler) {
return array($match, $state, $pos);
}

Expand All @@ -69,7 +69,7 @@ public function handle($match, $state, $pos, &$handler) {
*
* @return type boolean is de operatie geslaagd?
*/
public function render($format, &$renderer, $data) {
public function render($format, Doku_Renderer $renderer, $data) {

if('xhtml' === $format) {
try {
Expand Down