/home/techb158/dev.balacoffee.com/vendor/ramsey/collection/src/Map
NameSizeModeActions
AbstractMap.php50520644editdlrm
AbstractTypedMap.php17270644editdlrm
AssociativeArrayMap.php5460644editdlrm
MapInterface.php45630644editdlrm
NamedParameterMap.php31300644editdlrm
TypedMap.php28170644editdlrm
TypedMapInterface.php8030644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/ramsey/collection/src/Map/TypedMapInterface.php (803B)
* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Collection\Map; /** * A `TypedMapInterface` represents a map of elements where key and value are * typed. * * @template K of array-key * @template T * @extends MapInterface */ interface TypedMapInterface extends MapInterface { /** * Return the type used on the key. */ public function getKeyType(): string; /** * Return the type forced on the values. */ public function getValueType(): string; }