Changeset 38
- Timestamp:
- 03/09/06 14:05:11 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/tasks/ext/svn/SvnBaseTask.php
r37 r38 152 152 * 153 153 * @param array Additional arguments to pass to SVN. 154 * @param array Switches to pass to SVN. 154 155 * @return string Output generated by SVN. 155 156 */ 156 protected function run($args = array() )157 protected function run($args = array(), $switches = array()) 157 158 { 158 159 $svnstack = PEAR_ErrorStack::singleton('VersionControl_SVN'); … … 162 163 $tempArgs = array_merge($tempArgs, $args); 163 164 164 if ($output = $this->svn->run($tempArgs ))165 if ($output = $this->svn->run($tempArgs, $switches)) 165 166 { 166 167 return $output;
