for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Domain\Model;
class ObjectEntry
{
private string $key;
private $value;
public function __construct(string $key, $value)
$this->key = $key;
$this->value = $value;
}
public function getKey(): string
return $this->key;
public function getValue()
return $this->value;