PHP_SMART_HOME_V3/library/Controller.php

10 lines
113 B
PHP
Raw Normal View History

2020-04-29 18:14:53 +00:00
<?php
class Controller{
2020-05-04 19:19:14 +00:00
public $view = null;
2020-04-29 18:14:53 +00:00
2020-05-04 19:19:14 +00:00
public function __construct(){
$this->view = new View();
}
2020-04-29 18:14:53 +00:00
}