Completed
Push — 8.x-1.x ( 4c4e07...db76fc )
by Frédéric G.
25s queued 10s
created

ResultsReportController::view()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 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