for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Maxim Sokolovsky
*/
namespace WS\Utils\Collections;
class MapEntry
{
private $key;
private $value;
public function __construct($key, $value)
$this->key = $key;
$this->value = $value;
}
* @return mixed
public function getKey()
return $this->key;
public function getValue()
return $this->value;