| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 25% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class Timer |
||
| 6 | { |
||
| 7 | public static function start() |
||
| 8 | { |
||
| 9 | return Workflow::serviceEnabled()->startTimer(); |
||
| 10 | } |
||
| 11 | |||
| 12 | 8 | public static function running() |
|
| 13 | { |
||
| 14 | 8 | return Workflow::serviceEnabled()->runningTimer(); |
|
| 15 | } |
||
| 16 | |||
| 17 | public static function stop() |
||
| 18 | { |
||
| 19 | return Workflow::serviceEnabled()->stopCurrentTimer(); |
||
| 20 | } |
||
| 21 | |||
| 22 | public static function continue($timerId) |
||
| 25 | } |
||
| 26 | } |
||
| 27 |