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.
16 lines
329 B
PHP
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";
|
|
}
|