Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | abstract class NumericContainer extends StyleContainer |
||
10 | { |
||
11 | public function px(int $px, bool $important=false) : StyleBuilder |
||
12 | { |
||
13 | return $this->setStylePX($px, $important); |
||
14 | } |
||
15 | |||
16 | public function percent(float $percent, bool $important=false) : StyleBuilder |
||
17 | { |
||
18 | return $this->setStylePercent($percent, $important); |
||
19 | } |
||
20 | |||
21 | public function em(float $percent, bool $important=false) : StyleBuilder |
||
24 | } |
||
25 | } |
||
26 |