PHP_SMART_HOME_V3/library/Controller.php

10 lines
113 B
PHP

<?php
class Controller{
public $view = null;
public function __construct(){
$this->view = new View();
}
}