Compare commits

..

No commits in common. "9785954870fc15222be4d7494f174af3123230cd" and "d23ecfbde661d899e69308573cca2681fd8480e0" have entirely different histories.

2 changed files with 3 additions and 1 deletions

View File

@ -1,10 +1,10 @@
<?php <?php
define('dbhost', 'localhost'); define('dbhost', 'localhost');
define('dbname', ''); define('dbname', '');
define('dbuser', ''); define('dbuser', '');
define('dbpass', ''); define('dbpass', '');
define('SITE_URL', '');
define('ROOT_DIR', __DIR__); define('ROOT_DIR', __DIR__);
?> ?>

View File

@ -13,6 +13,8 @@
namespace Libs; namespace Libs;
use Libs\Request;
class Router { class Router {
private static $get = []; private static $get = [];
private static $post = []; private static $post = [];