lbacik/object-collection

基于 SPL ArrayObject 类的对象集合

v0.1 2022-09-28 16:45 UTC

This package is not auto-updated.

Last update: 2024-09-27 00:35:48 UTC


README

使用 composer 安装

composer require lbacik/object-collection

示例

声明

use App\MyObject;
use Sushi\ObjectCollection

class MyObjectCollection extends ObjectCollection
{
    static string $type = MyObject::class;
}

用法

$myCollection = new MyObjectCollection([
    new MyObject('foo'),
    new MyObject('bar'),
]);