Changes to the Framework

This commit is contained in:
2020-11-02 16:01:27 -03:00
parent 47091f1754
commit ac574f3e53
91 changed files with 401 additions and 29524 deletions
+4 -4
View File
@@ -2,12 +2,12 @@
namespace App\Core\Welcome;
use RR\Response as R;
use App\Core\Template\Output;
class WelcomeController{
class WelcomeController {
function welcome(){
R::json(Array('message' => \Lang::getString('welcome', 'welcome')))->send()->done();
function welcome() {
Output::render();
}
}