for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information.
namespace Collections;
use Collections\Comparer\NumericKeyComparer;
use Collections\Generic\ComparerInterface;
use Easy\Generics\EquatableInterface;
/**
* Provides the abstract base class for a strongly typed collection.
*/
abstract class AbstractCollection implements EquatableInterface
{
}