Total Complexity | 6 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 88.24% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class FuncGenerator |
||
24 | { |
||
25 | private $iFunc = ''; |
||
26 | private $iXFunc = ''; |
||
27 | private $iMin; |
||
28 | private $iMax; |
||
29 | private $iStepSize; |
||
30 | |||
31 | 2 | public function __construct($aFunc, $aXFunc = '') |
|
32 | { |
||
33 | 2 | $this->iFunc = $aFunc; |
|
34 | 2 | $this->iXFunc = $aXFunc; |
|
35 | 2 | } |
|
36 | |||
37 | 2 | public function E($aXMin, $aXMax, $aSteps = 50) |
|
62 | } |
||
63 | } |
||
64 |