Files
nibiru-framework.com/core/i/version.php
stephan.kasdorf 16c1a08345 VERSION 1.0.0
Implement new auto class and refactor usages of deprecated autoloader

A new automatic class loading mechanism has been introduced (Auto), replacing the deprecated Autoloader. This refactoring includes updating directory paths, changing the ownership of directories, and modifying file content strings. The codebase has been scoured to replace all instances of the discontinued Autoloader with the new class/method calls.
2024-02-27 16:25:10 +01:00

16 lines
329 B
PHP

<?php
namespace Nibiru\Adapter;
/**
* interface IVersion
* @project Nibiru Framework
* @desc This is a PHP interface file, please specify the use
* @author Stephan Kasdorf
* @date 17.08.23
* @time 11:25
* @package Nibiru\Adapter
*/
interface IVersion
{
const NIBIRU_VERSION = "1.0.0";
}