stk2k/collection

View on GitHub
src/Util/EqualableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types=1);

namespace stk2k\collection\Util;

interface EqualableInterface
{
    /**
     *  Check whether specified item is same to this object
     *
     * @param mixed $other
     *
     * @return bool
     */
    public function equals( $other ) : bool;
}