Praca, praca

Took 5 hours 39 minutes
This commit is contained in:
Krzysztof 'KrzysiekSiemv' Smaga
2023-05-14 23:21:51 +02:00
parent 36302fbaf1
commit 1bb536cd12
22 changed files with 502 additions and 52 deletions
+6 -1
View File
@@ -1,6 +1,11 @@
<?php
namespace BlogEngine\Authentication {
require "vendor/blog-engine/php/Database/DatabaseController.php";
$file = "vendor/blog-engine/php/Database/DatabaseController.php";
if(file_exists($file))
require $file;
else
require "../$file";
use BlogEngine\Database\DatabaseController;
class AuthController extends DatabaseController{