Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / devel / webprofiler / src / Entity / Decorators / Config / ShortcutSetStorageDecorator.php
index 1371009d8265b1e85c7b420eb71f686fb896ce39..7248ba1ce7b6da6212cb5abd17c1ea61e52b505f 100644 (file)
@@ -15,42 +15,42 @@ class ShortcutSetStorageDecorator extends ConfigEntityStorageDecorator implement
    * {@inheritdoc}
    */
   public function assignUser(ShortcutSetInterface $shortcut_set, $account) {
-    // TODO: Implement assignUser() method.
+    $this->getOriginalObject()->assignUser($shortcut_set, $account);
   }
 
   /**
    * {@inheritdoc}
    */
   public function unassignUser($account) {
-    // TODO: Implement unassignUser() method.
+    return $this->getOriginalObject()->unassignUser($account);
   }
 
   /**
    * {@inheritdoc}
    */
   public function deleteAssignedShortcutSets(ShortcutSetInterface $entity) {
-    // TODO: Implement deleteAssignedShortcutSets() method.
+    $this->getOriginalObject()->deleteAssignedShortcutSets($entity);
   }
 
   /**
    * {@inheritdoc}
    */
   public function getAssignedToUser($account) {
-    // TODO: Implement getAssignedToUser() method.
+    return $this->getOriginalObject()->getAssignedToUser($account);
   }
 
   /**
    * {@inheritdoc}
    */
   public function countAssignedUsers(ShortcutSetInterface $shortcut_set) {
-    // TODO: Implement countAssignedUsers() method.
+    return $this->getOriginalObject()->countAssignedUsers($shortcut_set);
   }
 
   /**
    * {@inheritdoc}
    */
   public function getDefaultSet(AccountInterface $account) {
-    // TODO: Implement getDefaultSet() method.
+    return $this->getOriginalObject()->getDefaultSet($account);
   }
 
 }