AssociativeArrayMap.php 549 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * This file is part of the ramsey/collection library
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
  9. * @license http://opensource.org/licenses/MIT MIT
  10. */
  11. declare(strict_types=1);
  12. namespace Ramsey\Collection\Map;
  13. /**
  14. * `AssociativeArrayMap` represents a standard associative array object.
  15. *
  16. * @template T
  17. * @extends AbstractMap<T>
  18. */
  19. class AssociativeArrayMap extends AbstractMap
  20. {
  21. }