Files
DesignPatternsPHP/More/EAV/Value.php
2019-12-14 13:41:03 +01:00

23 lines
459 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\More\EAV;
class Value
{
private Attribute $attribute;
private string $name;
public function __construct(Attribute $attribute, string $name)
{
$this->name = $name;
$this->attribute = $attribute;
$attribute->addValue($this);
}
public function __toString(): string
{
return sprintf('%s: %s', (string) $this->attribute, $this->name);
}
}