Modifications aand started working on adminBundle

This commit is contained in:
2019-03-20 00:00:53 +01:00
parent 73a8455cba
commit fafe29f42d
12 changed files with 79 additions and 23 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace AdminLib\Controller;
use AdminLib\Classes\AdminController;
class IndexController extends AdminController {
public function index() {
return "Hello Administrator!";
}
}