]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/FacebookBridge/classes/Notice_to_item.php
Updating all Memcached_DataObject extended classes to Managed_DataObject
[quix0rs-gnu-social.git] / plugins / FacebookBridge / classes / Notice_to_item.php
index d37c95ffc1e5858cb7cd22099604ece3990b6272..fe0a90c84835a9f8cd129fcbb7485923ba823b90 100644 (file)
@@ -48,29 +48,13 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
  *
  * @see      DB_DataObject
  */
-class Notice_to_item extends Memcached_DataObject
+class Notice_to_item extends Managed_DataObject
 {
     public $__table = 'notice_to_item'; // table name
     public $notice_id;                  // int(4)  primary_key not_null
     public $item_id;                    // varchar(255) not null
     public $created;                    // datetime
 
-    /**
-     * Get an instance by key
-     *
-     * This is a utility method to get a single instance with a given key value.
-     *
-     * @param string $k Key to use to lookup
-     * @param mixed  $v Value to lookup
-     *
-     * @return Notice_to_item object found, or null for no hits
-     *
-     */
-    function staticGet($k, $v=null)
-    {
-        return Memcached_DataObject::staticGet('Notice_to_item', $k, $v);
-    }
-
     /**
      * return table definition for DB_DataObject
      *