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

purge() public method

If the entity does not exist, nothing will happen.
public purge ( string $class_name, string $id ) : void
$class_name string
$id string
return void
    public function purge($class_name, $id)
    {
        unset($this->storage[$this->getEntityKey($class_name, $id)]);
    }