Initial commit

This commit is contained in:
2026-01-15 12:23:11 +01:00
commit 92fc092460
52 changed files with 2283 additions and 0 deletions

23
inc/classes/Init.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
/**
* Klasa Init
*
* @link https://krzysztof-turek.com
*
* @package tylkofotografia.pl
* @version 0.2
*/
class Init {
use Singleton;
function __construct() {
Setup::getInstance();
Enqueue::getInstance();
Menus::getInstance();
Character::getInstance();
Tables::getInstance();
}
}