1 <?php
2
3 /* --------------------------------------------------------------
4 ProductAttributeCollection.inc.php 2016-01-08
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2015 Gambio GmbH
8 Released under the GNU General Public License (Version 2)
9 [http://www.gnu.org/licenses/gpl-2.0.html]
10 --------------------------------------------------------------
11 */
12
13
14 /**
15 * Class ProductAttributeCollection
16 *
17 * @category System
18 * @package ProductModule
19 * @subpackage Collections
20 */
21 class ProductAttributeCollection extends EditableCollection
22 {
23 /**
24 * Returns the valid type for the ProductAttributeCollection.
25 *
26 * @return string Valid type.
27 */
28 protected function _getValidType()
29 {
30 return 'ProductAttribute';
31 }
32 }