1: <?php declare(strict_types=1);
2:
3: namespace Salient\Collection;
4:
5: use Salient\Contract\Collection\CollectionInterface;
6:
7: /**
8: * @api
9: *
10: * @template TValue
11: *
12: * @implements CollectionInterface<int,TValue>
13: */
14: class ListCollection implements CollectionInterface
15: {
16: /** @use ListCollectionTrait<int,TValue> */
17: use ListCollectionTrait;
18: }
19: