1 | <?php |
||
18 | final class Decimal implements Value |
||
19 | { |
||
20 | private static $definitionSet; |
||
21 | |||
22 | private $value; |
||
23 | private $original; |
||
24 | |||
25 | 5 | public function __construct(Integer $value, Integer $scale) |
|
37 | |||
38 | 2 | public static function fromString(Str $string): Value |
|
47 | |||
48 | 2 | public static function cut(Str $string): Str |
|
57 | |||
58 | 4 | public function original(): Number |
|
62 | |||
63 | 4 | public function __toString(): string |
|
67 | |||
68 | 5 | public static function definitionSet(): Set |
|
72 | } |
||
73 |