| Total Complexity | 6 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class DecimalTrigInverseBench |
||
| 9 | { |
||
| 10 | |||
| 11 | public function benchArcSin() |
||
| 12 | { |
||
| 13 | $point5 = new ImmutableDecimal('0.5'); |
||
| 14 | $point5->arcsin(); |
||
| 15 | } |
||
| 16 | |||
| 17 | public function benchArcCos() |
||
| 18 | { |
||
| 19 | $point5 = new ImmutableDecimal('0.5'); |
||
| 20 | $point5->arccos(); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function benchArcTan() |
||
| 24 | { |
||
| 25 | $point5 = new ImmutableDecimal('0.5'); |
||
| 26 | $point5->arctan(); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function benchArcSec() |
||
| 33 | } |
||
| 34 | |||
| 35 | public function benchArcCsc() |
||
| 36 | { |
||
| 37 | $point5 = new ImmutableDecimal('10'); |
||
| 38 | $point5->arccsc(); |
||
| 39 | } |
||
| 40 | |||
| 41 | public function benchArcCot() |
||
| 45 | } |
||
| 46 | |||
| 47 | } |