1: <?php
2: /**
3: * Copyright 2000-2012 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @author Chuck Hagenbuch <chuck@horde.org>
9: * @package Chora
10: */
11: class Chora_Renderer_File
12: {
13: /**
14: * @var Horde_View
15: */
16: protected $_view;
17:
18: /**
19: * @var Horde_Vcs_File
20: */
21: protected $_file;
22:
23: /**
24: * @var string
25: */
26: protected $_revision;
27:
28: public function __construct(Horde_View $view, Horde_Vcs_File $file, $revision)
29: {
30: $this->_view = $view;
31: $this->_file = $file;
32: $this->_revision = $revision;
33: }
34: }
35: