21 lines
481 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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