c42e7c0de5430c015f57037fc1046001a11623ac
[yaffs-website] / web / core / lib / Drupal / Core / Entity / KeyValueStore / KeyValueContentEntityStorage.php
1 <?php
2
3 namespace Drupal\Core\Entity\KeyValueStore;
4
5 use Drupal\Core\Entity\ContentEntityInterface;
6 use Drupal\Core\Entity\ContentEntityStorageInterface;
7
8 /**
9  * Provides a key value backend for content entities.
10  */
11 class KeyValueContentEntityStorage extends KeyValueEntityStorage implements ContentEntityStorageInterface {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function createTranslation(ContentEntityInterface $entity, $langcode, array $values = []) {
17     // @todo Complete the content entity storage implementation in
18     //   https://www.drupal.org/node/2618436.
19   }
20
21 }