Skip to content
Snippets Groups Projects
Verified Commit 64cc6471 authored by Dave Long's avatar Dave Long
Browse files

Issue #3485410 by niklan, andypost:...

Issue #3485410 by niklan, andypost: \Drupal\Core\KeyValueStore\DatabaseStorage::doSetIfNotExists should be protected
parent 2396ee2b
No related branches found
No related tags found
4 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!617Issue #3043725: Provide a Entity Handler for user cancelation
Pipeline #384976 passed with warnings
Pipeline: drupal

#384978

    ......@@ -167,7 +167,7 @@ public function set($key, $value) {
    * @return bool
    * TRUE if the data was set, FALSE if it already existed.
    */
    public function doSetIfNotExists($key, $value) {
    protected function doSetIfNotExists($key, $value) {
    $result = $this->connection->merge($this->table)
    ->insertFields([
    'collection' => $this->collection,
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment