1 | <?php |
||
9 | abstract class AbstractNormalization implements NormalizationInterface |
||
10 | { |
||
11 | /** |
||
12 | * @inheritdoc |
||
13 | */ |
||
14 | 1 | public function normalizeDataset(Dataset $data, ValueInterface $coefficient) |
|
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | abstract public function normalizeValue(ValueInterface $value, ValueInterface $coefficient); |
||
33 | } |