| 1 | <?php |
||
| 12 | class Percentage implements OperatorInterface |
||
| 13 | { |
||
| 14 | private $percentage; |
||
| 15 | private $shift; |
||
| 16 | |||
| 17 | 20 | public function __construct($percentage, $shift = 0) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | 18 | public function appliesTo($argument) |
|
| 33 | |||
| 34 | 2 | public function getPercentage() |
|
| 38 | |||
| 39 | 2 | public function getShift() |
|
| 43 | } |
||
| 44 |