1 <?php
2
3 /* --------------------------------------------------------------
4 CategoryObjectServiceInterface.php 2015-11-23
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 /**
14 * Interface CategoryObjectServiceInterface
15 *
16 * This interface defines methods for creating new categories objects with its default values.
17 *
18 * @category System
19 * @package Category
20 * @subpackage Interfaces
21 */
22 interface CategoryObjectServiceInterface
23 {
24
25 /**
26 * Creates a new category object with its default values.
27 *
28 * @return CategoryInterface
29 */
30 public function createCategoryObject();
31 }