1: <?php
2: /**
3: * CVS log class.
4: *
5: * Copyright 2000-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (LGPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
9: *
10: * @author Anil Madhavapeddy <anil@recoil.org>
11: * @author Michael Slusarz <slusarz@horde.org>
12: * @package Vcs
13: */
14: class Horde_Vcs_Log_Cvs extends Horde_Vcs_Log_Rcs
15: {
16: /**
17: * Cached branch info.
18: *
19: * @var string
20: */
21: protected $_branch;
22:
23: /**
24: * TODO
25: */
26: public function setBranch($branch)
27: {
28: $this->_branch = array($branch);
29: }
30: }
31: