production/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php
2025-12-01 16:12:12 +00:00

14 lines
190 B
PHP
Executable File

<?php
namespace PhpOffice\PhpSpreadsheet;
interface IComparable
{
/**
* Get hash code.
*
* @return string Hash code
*/
public function getHashCode(): string;
}