xref: /template/strap/vendor/antlr/antlr4-php-runtime/src/Comparison/Hashable.php (revision 82a60d039cd81033dc8147c27f0a50716b7a5301)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Comparison;
6
7interface Hashable extends Equatable
8{
9    public function hashCode() : int;
10}
11