🚧 Did some stuff, don't remember exactly what

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-04 21:20:57 +01:00
parent 417c73e8c9
commit 97111b371b
185 changed files with 21061 additions and 163 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* This file is part of the ramsey/collection library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
* @license http://opensource.org/licenses/MIT MIT
*/
declare(strict_types=1);
namespace Ramsey\Collection\Map;
/**
* `AssociativeArrayMap` represents a standard associative array object.
*/
class AssociativeArrayMap extends AbstractMap
{
}