eZ\Publish\Core\Persistence\Cache\ObjectStateHandler::create PHP Метод

create() публичный Метод

См. также: eZ\Publish\SPI\Persistence\Content\ObjectState\Handler::create
public create ( $groupId, eZ\Publish\SPI\Persistence\Content\ObjectState\InputStruct $input )
$input eZ\Publish\SPI\Persistence\Content\ObjectState\InputStruct
    public function create($groupId, InputStruct $input)
    {
        $this->logger->logCall(__METHOD__, array('groupId' => $groupId, 'struct' => $input));
        $return = $this->persistenceHandler->objectStateHandler()->create($groupId, $input);
        $this->cache->clear('objectstate', 'byGroup', $groupId);
        return $return;
    }