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