mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-08-01 15:54:34 +00:00
code style fixes
This commit is contained in:
@ -57,7 +57,11 @@ class Decimal extends AbstractMultiBaseType
|
||||
$exp = $pfkey * $exp / abs($exp);
|
||||
}
|
||||
|
||||
$R->cdata($this->config['prefix'] . $value / 10**($exp*3) . "\xE2\x80\xAF" . $units[$pfkey] . $this->config['postfix'] );
|
||||
$R->cdata(
|
||||
$this->config['prefix'] .
|
||||
$value / 10 ** ($exp * 3) . "\xE2\x80\xAF" . $units[$pfkey] .
|
||||
$this->config['postfix']
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user