Your project should not contain "FIXME" comments

More information: https://insight.symfony.com/what-we-analyse/task_fixme_comment

  1. */
  2. private function getFileTable(array $result): int
  3. {
  4. $threshold = $this->coverageCheck->getThreshold();
  5. $tableRows = [];
  6. // @todo: Convert to ValueObject?
    Tasks comments are left in the code when a feature (or a bug) isn't completely developed (or fixed). You should complete the implementation and remove the comment.
    Last edited by Marius Posthumus
  7. $totalElements = ['coveredMetrics' => 0, 'totalMetrics' => 0];
  8. $metrics = $result['fileMetrics'];
  9. $totalCoverage = $result['totalCoverage'];
  10. unset($result);