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 TKey of array-key |
11: | * @template TValue |
12: | * |
13: | * @implements CollectionInterface<TKey,TValue> |
14: | */ |
15: | class Collection implements CollectionInterface |
16: | { |
17: | /** @use CollectionTrait<TKey,TValue> */ |
18: | use CollectionTrait; |
19: | } |
20: |