uptodown/collection

2.1 2022-09-15 08:34 UTC

This package is auto-updated.

Last update: 2025-05-15 14:12:50 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;
}