Files
nibiru-framework.com/core/i/IVersion.php
stephan.kasdorf e92091f235 Refactor and enhance database and form operations
Significant changes have been implemented in the database operations, particularly in update and insert functions, ensuring more stable and efficient handling of queries. Form capabilities have been enhanced by adding new attributes for processing decimal steps, further improving data input methods. This update also includes considerable refactoring and security enhancements in the PDO class.
2024-03-27 12:24:25 +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";
}