20250804
This commit is contained in:
29
sources/classes/DataBaseHeader.php
Normal file
29
sources/classes/DataBaseHeader.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace goodboyalex\php_db_components_pack\classes;
|
||||
|
||||
use goodboyalex\php_components_pack\classes\ObjectArray;
|
||||
|
||||
/**
|
||||
* Класс, описывающий структуру столбцов базы данных.
|
||||
*
|
||||
* @author Александр Бабаев
|
||||
* @package php_db_components_pack
|
||||
* @version 1.0
|
||||
* @since 1.0
|
||||
*/
|
||||
final class DataBaseHeader
|
||||
{
|
||||
/**
|
||||
* @var ObjectArray $Container Столбцы таблицы.
|
||||
*/
|
||||
private ObjectArray $Container;
|
||||
|
||||
/**
|
||||
* Конструктор.
|
||||
*/
|
||||
public function __construct ()
|
||||
{
|
||||
$this->Container = new ObjectArray();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user