CleanUp After Docker Try

This commit is contained in:
JonatanRek
2020-05-16 17:18:27 +02:00
parent 2f638d8091
commit 090b9f7a7b
123 changed files with 5265 additions and 0 deletions

9
library/Controller.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
class Controller{
public $view = null;
public function __construct(){
$this->view = new View();
}
}