xref: /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/Equatable.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Comparison;
6
7interface Equatable
8{
9    public function equals(object $other) : bool;
10}
11