Changeset 148
- Timestamp:
- 03/09/08 10:04:32 (9 months ago)
- Files:
-
- trunk/Phergie/Driver/Abstract.php (modified) (2 diffs)
- trunk/Phergie/Driver/Streams.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Phergie/Driver/Abstract.php
r103 r148 76 76 77 77 /** 78 * Converts a delimited string of hostmasks into a regular expression 78 * Converts a delimited string of hostmasks into a regular expression 79 79 * that will match any hostmask in the original string. 80 80 * … … 137 137 138 138 /** 139 * Returns all the plugins. 140 * 141 * @return Phergie_Plugin_Abstract_Base 142 */ 143 public abstract function getPlugins(); 144 145 /** 139 146 * Returns a plugin instance 140 147 * trunk/Phergie/Driver/Streams.php
r105 r148 95 95 $this->plugins[strtolower($plugin->getName())] = $plugin; 96 96 } 97 98 /** 99 * Returns all the plugins. 100 * 101 * @return Phergie_Plugin_Abstract_Base 102 */ 103 public function getPlugins() 104 { 105 return $this->plugins; 106 } 97 107 98 108 /**