1 <?php
2
3 /* --------------------------------------------------------------
4 CategoryListItemCollection.inc.php 2016-02-12
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2016 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 CategoryListItemCollection
15 *
16 * This class is a container (collection) for CategoryListItem objects.
17 *
18 * @category System
19 * @package Category
20 * @subpackage Collections
21 */
22 class CategoryListItemCollection extends AbstractCollection
23 {
24
25 /**
26 * Get valid type.
27 *
28 * @return string Valid type.
29 */
30 protected function _getValidType()
31 {
32 return 'CategoryListItem';
33 }
34 }