uptodown/collection

This package is abandoned and no longer maintained. No replacement package was suggested.

Installs: 24 424

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/uptodown/collection

2.3.1 2025-10-27 11:55 UTC

This package is auto-updated.

Last update: 2025-11-13 17:32:14 UTC


README

A base collection class for managing groups of items of the same class

Packagist MIT License

Installation

To install it with composer:

composer require uptodown/collection

Simple usage

use Uptodown\Collection\AbstractCollection;

class ItemCollection extends AbstractCollection
{
    const CLASSNAME = Item::class;
}