1 <?php
2
3 /* --------------------------------------------------------------
4 StringCollection.inc.php 2016-01-25
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 StringCollection
15 *
16 * @category System
17 * @package Shared
18 */
19 class StringCollection extends AbstractCollection
20 {
21
22 /**
23 * Get valid item type.
24 *
25 * @return string
26 */
27 protected function _getValidType()
28 {
29 return 'StringType';
30 }
31 }