mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-22 04:21:37 +02:00
20 lines
292 B
PHP
20 lines
292 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\More\EAV;
|
|
|
|
/**
|
|
* Interface ValueInterface
|
|
*/
|
|
interface ValueInterface
|
|
{
|
|
/**
|
|
* @param Attribute $attribute
|
|
*/
|
|
public function __construct(Attribute $attribute);
|
|
|
|
/**
|
|
* @return Attribute
|
|
*/
|
|
public function getAttribute();
|
|
}
|