Bravo3\Orm\Services\Cache\EphemeralEntityCache::store PHP Method

store() public method

Store an entity in cache
public store ( string $class_name, string $id, object $entity ) : void
$class_name string
$id string
$entity object
return void
    public function store($class_name, $id, $entity)
    {
        $this->storage[$this->getEntityKey($class_name, $id)] = $entity;
    }