1 <?php
2 /**
3 * Interface that is implemented by controllers that are designed to hand control over to another controller.
4 * ModelAsController, which selects up a SiteTree object and passes control over to a suitable subclass of ContentController, is a good
5 * example of this.
6 * @package sapphire
7 * @subpackage control
8 */
9 interface NestedController {
10 public function getNestedController();
11
12 }
13
14 ?>