* @copyright Copyright (c) 2013 - 2019, TechFuze. (http://techfuze.net) */ abstract class View extends Factory { /** * The controller associated with this view * * @var Controller */ protected $controller; /** * Provide the View with its associated Controller * * @param Controller $controller */ public function setController(Controller $controller) { $this->controller = $controller; } }