vehsamrak/phplist
Composer 安装命令:
composer require vehsamrak/phplist
包简介
List structure PHP implementation
README 文档
README
List structure PHP implementation based on Doctrine collections. Supported lists:
- TypedList (by class name)
- IntegerList
- StringList
- BooleanList
- FloatList
- FunctionList
- CollectionList
- ArrayList
- ObjectList
- ResourceList
Installation
composer require vehsamrak/phplist
Usage
<?php use Vehsamrak\ListCollection\TypedList; use Vehsamrak\ListCollection\IntegerList; $typedList = new TypedList(Foobar::class, [new Foobar(), new Foobar()]); $foobar = new Foobar(); $typedList->add($foobar); $typedList->remove($foobar); $otherType = new OtherType(); $typedList->add($otherType); // will throw InvalidTypeException $integerList = new IntegerList(); $integerList->add(1); $integerList->add('not a number'); // will throw InvalidTypeException // Examples could be found in `tests` directory // More use cases can be found in Doctrine collections documentation: // https://www.doctrine-project.org/projects/doctrine-collections/en/latest/index.html
Creation of custom typed lists
You can create your own typed lists simply by extending TypedList.
<?php use Vehsamrak\ListCollection\TypedList; class CustomList extends TypedList { public function __construct(array $elements = []) { parent::__construct(Custom::class, $elements); } }
Testing
First, install development requirements with composer install. Then, tests could be executed with vendor/bin/phpunit tests
统计信息
- 总下载量: 102.6k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-10-04