mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 22:09:23 +02:00
25 lines
416 B
PHP
25 lines
416 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\More\EAV;
|
|
|
|
/**
|
|
* Interface ValueAccessInterface
|
|
*/
|
|
interface ValueAccessInterface
|
|
{
|
|
/**
|
|
* @return ValueInterface[]
|
|
*/
|
|
public function getValues();
|
|
|
|
/**
|
|
* @param ValueInterface $value
|
|
*/
|
|
public function addValue(ValueInterface $value);
|
|
|
|
/**
|
|
* @param ValueInterface $value
|
|
*/
|
|
public function removeValue(ValueInterface $value);
|
|
}
|