This commit is contained in:
Egor Isaev 2026-04-27 16:04:31 +03:00
parent ab4d8b2a75
commit 8717326036
8 changed files with 47 additions and 3 deletions

View File

@ -0,0 +1,14 @@
<?php
/**
* @package MMH
* @author Egor Isaev
* @description Database.php
* @copyright (c) 27/04/2026
*/
namespace Classes;
class Database
{
}

View 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
View File

@ -0,0 +1,15 @@
<?php
/**
* @package MMH
* @author Egor Isaev
* @description View.php
* @copyright (c) 27/04/2026
*/
namespace Classes;
class View
{
}

View File

View File

@ -7,5 +7,5 @@ define('BASE_PATH', dirname(__DIR__));
require_once BASE_PATH . '/vendor/autoload.php'; require_once BASE_PATH . '/vendor/autoload.php';
$app = new \Bicycle\Application(BASE_PATH); $app = new \Bicycle\App(BASE_PATH);
$app->runConsole($argv); $app->runConsole($argv);

View File

@ -12,8 +12,8 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Sys\\": "System/", "Sys\\": "System",
"App\\": "App/" "App\\": "App"
} }
}, },
"autoload-dev": { "autoload-dev": {