1<?php 2 3namespace dokuwiki\template\twigstarter; 4 5/** 6 * Custom controller can be used by child templates and will be auto registered in Twig as SELF 7 */ 8interface CustomControllerInterface 9{ 10 /** 11 * CustomControllerInterface constructor. 12 * @param TemplateController $tpl The main template controller 13 */ 14 public function __construct(TemplateController $tpl); 15} 16