1 <?php
2
3 /* --------------------------------------------------------------
4 OrderTotalCollection.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 OrderTotalCollection
17 *
18 * @category System
19 * @package Order
20 * @subpackage Collections
21 */
22 class OrderTotalCollection extends AbstractCollection
23 {
24 /**
25 * Returns the valid type.
26 *
27 * This method must be implemented in the child-collection classes.
28 *
29 * @return string Valid type.
30 */
31 protected function _getValidType()
32 {
33 return 'OrderTotalInterface';
34 }
35 }