1 | <?php |
||
20 | class FormulaEngine |
||
21 | { |
||
22 | protected $ruler; |
||
23 | |||
24 | protected $asserter; |
||
25 | |||
26 | protected $context; |
||
27 | |||
28 | protected $discount; |
||
29 | |||
30 | 1 | public function __construct() |
|
36 | |||
37 | 1 | public function build(string $formula) |
|
41 | |||
42 | 1 | public function getRuler() |
|
51 | |||
52 | 1 | public function getAsserter() |
|
60 | |||
61 | 1 | public function getContext() |
|
69 | |||
70 | 1 | protected function buildContext() |
|
77 | |||
78 | 1 | public function getDiscount() |
|
86 | } |
||
87 |