dev
This commit is contained in:
parent
ab4d8b2a75
commit
8717326036
14
System/Classes/Database.php
Normal file
14
System/Classes/Database.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* @package MMH
|
||||
* @author Egor Isaev
|
||||
* @description Database.php
|
||||
* @copyright (c) 27/04/2026
|
||||
*/
|
||||
|
||||
namespace Classes;
|
||||
|
||||
class Database
|
||||
{
|
||||
|
||||
}
|
||||
15
System/Classes/Request.php
Normal file
15
System/Classes/Request.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package MMH
|
||||
* @author Egor Isaev
|
||||
* @description Request.php
|
||||
* @copyright (c) 27/04/2026
|
||||
*/
|
||||
|
||||
namespace Classes;
|
||||
|
||||
class Request
|
||||
{
|
||||
|
||||
}
|
||||
15
System/Classes/View.php
Normal file
15
System/Classes/View.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package MMH
|
||||
* @author Egor Isaev
|
||||
* @description View.php
|
||||
* @copyright (c) 27/04/2026
|
||||
*/
|
||||
|
||||
namespace Classes;
|
||||
|
||||
class View
|
||||
{
|
||||
|
||||
}
|
||||
@ -7,5 +7,5 @@ define('BASE_PATH', dirname(__DIR__));
|
||||
|
||||
require_once BASE_PATH . '/vendor/autoload.php';
|
||||
|
||||
$app = new \Bicycle\Application(BASE_PATH);
|
||||
$app = new \Bicycle\App(BASE_PATH);
|
||||
$app->runConsole($argv);
|
||||
|
||||
@ -12,8 +12,8 @@
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Sys\\": "System/",
|
||||
"App\\": "App/"
|
||||
"Sys\\": "System",
|
||||
"App\\": "App"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user