1 <?php
2
3 /* --------------------------------------------------------------
4 StoredProductAttributeCollection.inc.php 2016-01-07
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 * Class StoredProductAttributeCollection
15 *
16 * @category System
17 * @package ProductModule
18 * @subpackage Collections
19 */
20 class StoredProductAttributeCollection extends ProductAttributeCollection
21 {
22 /**
23 * Returns the valid type for the StoredProductAttributeCollection
24 *
25 * @return string Valid type.
26 */
27 protected function _getValidType()
28 {
29 return 'StoredProductAttribute';
30 }
31 }