1<?php 2/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */ 3 4/** 5 * Interface ilAccessibilityEquatable 6 */ 7interface ilAccessibilityEquatable 8{ 9 /** 10 * @param mixed $other 11 * @return bool 12 */ 13 public function equals($other) : bool; 14} 15