eZ\Publish\Core\Persistence\Cache\ObjectStateHandler::updateGroup PHP Method

updateGroup() public method

See also: eZ\Publish\SPI\Persistence\Content\ObjectState\Handler::updateGroup
public updateGroup ( $groupId, eZ\Publish\SPI\Persistence\Content\ObjectState\InputStruct $input )
$input eZ\Publish\SPI\Persistence\Content\ObjectState\InputStruct
    public function updateGroup($groupId, InputStruct $input)
    {
        $this->logger->logCall(__METHOD__, array('groupId' => $groupId, 'struct' => $input));
        $return = $this->persistenceHandler->objectStateHandler()->updateGroup($groupId, $input);
        $this->cache->clear('objectstategroup', $groupId);
        return $return;
    }