Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | final class ResourceUtilization |
||
14 | { |
||
15 | private float $startTime; |
||
16 | |||
17 | private float $endTime; |
||
18 | |||
19 | private float $peakMemoryUsage; |
||
20 | |||
21 | 3 | public function start(): void |
|
22 | { |
||
23 | 3 | $this->startTime = microtime(true); |
|
24 | } |
||
25 | |||
26 | 2 | public function stop(): void |
|
27 | { |
||
28 | 2 | $this->endTime = microtime(true); |
|
29 | 2 | $this->peakMemoryUsage = memory_get_peak_usage(true); |
|
30 | } |
||
31 | |||
32 | 1 | public function getPerformanceMetrics(): PerformanceMetricsDTO |
|
37 | 1 | ); |
|
38 | } |
||
39 | |||
40 | 1 | private function getExecutionTime(): float |
|
43 | } |
||
44 | |||
45 | 1 | private function getPeakMemoryUsage(): float |
|
50 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths