equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Tool |
16 * @package Zend_Tool |
17 * @subpackage Framework |
17 * @subpackage Framework |
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: Directory.php 20096 2010-01-06 02:05:09Z bkarwin $ |
20 * @version $Id: Directory.php 24593 2012-01-05 20:35:02Z matthew $ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Tool_Project_Context_Filesystem_Abstract |
24 * @see Zend_Tool_Project_Context_Filesystem_Abstract |
25 */ |
25 */ |
31 * A profile is a hierarchical set of resources that keep track of |
31 * A profile is a hierarchical set of resources that keep track of |
32 * items within a specific project. |
32 * items within a specific project. |
33 * |
33 * |
34 * @category Zend |
34 * @category Zend |
35 * @package Zend_Tool |
35 * @package Zend_Tool |
36 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
36 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
37 * @license http://framework.zend.com/license/new-bsd New BSD License |
37 * @license http://framework.zend.com/license/new-bsd New BSD License |
38 */ |
38 */ |
39 class Zend_Tool_Project_Context_Filesystem_Directory extends Zend_Tool_Project_Context_Filesystem_Abstract |
39 class Zend_Tool_Project_Context_Filesystem_Directory extends Zend_Tool_Project_Context_Filesystem_Abstract |
40 { |
40 { |
41 |
41 |
42 /** |
42 /** |
43 * getName() |
43 * getName() |
44 * |
44 * |
45 * @return string |
45 * @return string |
46 */ |
46 */ |
47 public function getName() |
47 public function getName() |
48 { |
48 { |
49 return 'directory'; |
49 return 'directory'; |
50 } |
50 } |
51 |
51 |
52 /** |
52 /** |
53 * create() |
53 * create() |
54 * |
54 * |
55 * @return Zend_Tool_Project_Context_Filesystem_Directory; |
55 * @return Zend_Tool_Project_Context_Filesystem_Directory; |
56 */ |
56 */ |