Files
awo-hamburg-intranet/mysyde/common/interfaces/GenericObjectStorageInterface.php
2026-02-17 14:56:23 +01:00

29 lines
547 B
PHP

<?php
namespace DynCom\mysyde\common\interfaces;
/**
* Created by PhpStorm.
* User: Bauer
* Date: 6/2/2015
* Time: 10:22 AM
*/
interface GenericObjectStorageInterface extends \Countable, \Iterator, \ArrayAccess
{
/**
* @param $object
* @param null $data
* @return mixed
*/
public function attach($object, $data = null);
/**
* @param $object
* @return mixed
*/
public function detach($object);
/**
* @return mixed
*/
public function clear();
}