This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PHP_SMART_HOME_V3/www/library/Controller.php
2020-05-15 22:45:31 +02:00

10 lines
113 B
PHP

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