1 <?php
2 /* --------------------------------------------------------------
3 HttpViewControllerFactoryInterface.inc.php 2015-07-22 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12
13 /**
14 * Interface HttpViewControllerFactoryInterface
15 *
16 * @category System
17 * @package Http
18 * @subpackage Interfaces
19 */
20 interface HttpViewControllerFactoryInterface
21 {
22 /**
23 * Creates a new instance of a http view controller by the given controller name.
24 *
25 * @param string $controllerName Expected name of controller (without 'Controller'-Suffix)
26 *
27 * @return HttpViewControllerInterface Created controller instance.
28 */
29 public function createController($controllerName);
30 }