ResultsReportController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
c 1
b 0
f 0
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A report() 0 4 1
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace Drupal\qa\Controller;
6
7
use Drupal\Core\Controller\ControllerBase;
8
9
/**
10
 * Class ResultsReportController.
11
 */
12
class ResultsReportController extends ControllerBase {
13
14
  /**
15
   * Action.
16
   *
17
   * @return array
18
   *   A render array.
19
   */
20
  public function report() {
21
    return [
22
      '#type' => 'markup',
23
      '#markup' => $this->t('Implement method: report'),
24
    ];
25
  }
26
27
}
28