1 <?php
2 /* --------------------------------------------------------------
3 UserConfigurationWriterInterface.inc.php 2015-10-05 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 /**
13 * Interface UserConfigurationWriterInterface
14 *
15 * @category System
16 * @package UserConfiguration
17 * @subpackage Interfaces
18 */
19 interface UserConfigurationWriterInterface
20 {
21 /**
22 * Sets a user configuration (table: user_configuration)
23 *
24 * @param IdType $userId
25 * @param string $configurationKey
26 * @param string $configurationValue
27 */
28 public function setUserConfiguration(IdType $userId, $configurationKey, $configurationValue);
29 }