mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-23 21:11:39 +02:00
25 lines
417 B
PHP
25 lines
417 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);
|
|
}
|