Files
DesignPatternsPHP/More/EAV/ValueInterface.php
2015-08-19 15:52:10 +03:00

25 lines
400 B
PHP

<?php
namespace DesignPatterns\More\EAV;
/**
* Interface ValueInterface
*/
interface ValueInterface
{
/**
* @param Attribute $attribute
*/
public function __construct(Attribute $attribute);
/**
* @param Attribute $attribute
*/
public function setAttribute(Attribute $attribute);
/**
* @return Attribute
*/
public function getAttribute();
}