public function addIssue($type, $data = []);
- public function addPageBackgroundColor($page, $to);
+ public function addPageBackgroundColor($page, $color,$arrowsColor);
}
// TODO: Implement addIssue() method.
}
- public function addPageBackgroundColor($page, $to)
+ public function addPageBackgroundColor($page, $color, $arrowsColor)
{
// TODO: Implement addPageBackgroundColor() method.
}
case static::COPY_TO_CLIPBOARD:
return new CopyToClipboardLink($id, $init, $compiler);
case static::PAGE_BACKGROUND_COLOR:
- $compiler->addPageBackgroundColor($init['page'], $init['to']);
+ $compiler->addPageBackgroundColor($init['page'], $init['to'] ?? '', $init['extra'] ?? '');
break;
default:
return null;