1 | <?php |
||
4 | class NDeviationFormatter |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | public $format; |
||
11 | |||
12 | /** |
||
13 | * @param string $format Optional: sprintf format string |
||
14 | */ |
||
15 | 27 | public function __construct( string $format = "%01.1f" ) |
|
19 | |||
20 | /** |
||
21 | * @param float|NDeviationProviderInterface|NDeviationInterface|string $N |
||
22 | * @return string |
||
23 | */ |
||
24 | 27 | public function __invoke( $N ) |
|
58 | } |
||
59 |