uptodown/collection

2.1 2022-09-15 08:34 UTC

This package is auto-updated.

Last update: 2024-09-15 12:44:43 UTC


README

一个用于管理相同类型项的集合的基础类

Packagist MIT License

安装

使用composer安装

composer require uptodown/collection

简单用法

use Uptodown\Collection\AbstractCollection;

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