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: ProjectProfileFile.php 20851 2010-02-02 21:45:51Z ralph $ |
20 * @version $Id: ProjectProfileFile.php 24593 2012-01-05 20:35:02Z matthew $ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Tool_Project_Context_Filesystem_File |
24 * @see Zend_Tool_Project_Context_Filesystem_File |
25 */ |
25 */ |
46 * A profile is a hierarchical set of resources that keep track of |
46 * A profile is a hierarchical set of resources that keep track of |
47 * items within a specific project. |
47 * items within a specific project. |
48 * |
48 * |
49 * @category Zend |
49 * @category Zend |
50 * @package Zend_Tool |
50 * @package Zend_Tool |
51 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
51 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
52 * @license http://framework.zend.com/license/new-bsd New BSD License |
52 * @license http://framework.zend.com/license/new-bsd New BSD License |
53 */ |
53 */ |
54 class Zend_Tool_Project_Context_System_ProjectProfileFile |
54 class Zend_Tool_Project_Context_System_ProjectProfileFile |
55 extends Zend_Tool_Project_Context_Filesystem_File |
55 extends Zend_Tool_Project_Context_Filesystem_File |
56 implements Zend_Tool_Project_Context_System_Interface, |
56 implements Zend_Tool_Project_Context_System_Interface, |
64 |
64 |
65 /** |
65 /** |
66 * @var Zend_Tool_Project_Profile |
66 * @var Zend_Tool_Project_Profile |
67 */ |
67 */ |
68 protected $_profile = null; |
68 protected $_profile = null; |
69 |
69 |
70 /** |
70 /** |
71 * getName() |
71 * getName() |
72 * |
72 * |
73 * @return string |
73 * @return string |
74 */ |
74 */ |
75 public function getName() |
75 public function getName() |
76 { |
76 { |
77 return 'ProjectProfileFile'; |
77 return 'ProjectProfileFile'; |
78 } |
78 } |
79 |
79 |
80 /** |
80 /** |
81 * setProfile() |
81 * setProfile() |
82 * |
82 * |
83 * @param Zend_Tool_Project_Profile $profile |
83 * @param Zend_Tool_Project_Profile $profile |
84 * @return Zend_Tool_Project_Context_System_ProjectProfileFile |
84 * @return Zend_Tool_Project_Context_System_ProjectProfileFile |