1 <?php
2
3 /* --------------------------------------------------------------
4 OrderItemCollection.inc.php 2015-10-27 gm
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 MainFactory::load_class('AbstractCollection');
14
15 /**
16 * Class OrderItemCollection
17 *
18 * @category System
19 * @package Order
20 * @subpackage Collections
21 */
22 class OrderItemCollection extends AbstractCollection
23 {
24 /**
25 * Returns the valid type.
26 *
27 * This method must be implemented in the child-collection classes.
28 *
29 * Type must be OrderItemInterface
30 *
31 * @return string Valid type.
32 */
33 protected function _getValidType()
34 {
35 return 'OrderItemInterface';
36 }
37 }