1 <?php
2
3 /* --------------------------------------------------------------
4 EmptyCurrencyCode.php 2015-10-27
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 * EmptyCurrencyCode
15 *
16 * The purpose of this class is to return an empty string
17 * as representation of a empty currency code value.
18 *
19 * @category System
20 * @package Shared
21 */
22 class EmptyCurrencyCode extends CurrencyCode
23 {
24 /**
25 * Override constructor, as no argument are passed, and therefore
26 * no validation is needed in this class.
27 */
28 public function __construct()
29 {
30
31 }
32 }