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