Pastie: remove example code
authorBen Klang <ben@alkaloid.net>
Tue, 8 Jun 2010 16:47:09 +0000 (12:47 -0400)
committerBen Klang <ben@alkaloid.net>
Tue, 8 Jun 2010 19:36:54 +0000 (15:36 -0400)
pastie/lib/Driver.php

index b8b702c..e1c23df 100644 (file)
 class Pastie_Driver
 {
     /**
-     * Array holding the current foo list. Each array entry is a hash
-     * describing a foo. The array is indexed by the IDs.
-     *
-     * @var array
-     */
-    protected $_foos = array();
-
-    /**
      * Attempts to return a concrete instance based on $driver.
      *
      * @param string $driver  The type of the concrete subclass to return.
@@ -53,14 +45,4 @@ class Pastie_Driver
         throw new Horde_Exception('Could not find driver ' . $class);
     }
 
-    /**
-     * Lists all foos.
-     *
-     * @return array  Returns a list of all foos.
-     */
-    public function listFoos()
-    {
-        return $this->_foos;
-    }
-
 }