From: Ben Klang Date: Tue, 8 Jun 2010 16:47:09 +0000 (-0400) Subject: Pastie: remove example code X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0188eb4d5ec1ef30aaf3b02dfe5312fc98279b6b;p=horde.git Pastie: remove example code --- diff --git a/pastie/lib/Driver.php b/pastie/lib/Driver.php index b8b702c01..e1c23df18 100644 --- a/pastie/lib/Driver.php +++ b/pastie/lib/Driver.php @@ -14,14 +14,6 @@ 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; - } - }