2023-11-09 14:09:52 +08:00

14 lines
182 B
PHP
Executable File

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