DesignPatternsPHP/More/EAV/ValueInterface.php
2015-12-21 07:28:20 -05:00

25 lines
401 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();
}