20250721 1.2 Бета 1

This commit is contained in:
2025-07-21 17:51:37 +03:00
parent 2c3ea12fc1
commit 04f6849ff4
12 changed files with 1162 additions and 147 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace goodboyalex\php_components_pack\interfaces;
/**
* Интерфейс, указывающий, что у класса можно получить хэш.
*
* @author Александр Бабаев
* @package freecms
* @version 0.1
* @since 1.2
*/
interface IHashable
{
/**
* Возвращает хеш-значение класса.
*
* @return string Хеш-значение класса.
*/
public function Hash (): string;
}