Passed
Push — master ( 7569b4...9bedea )
by refat
02:58
created

DataProtectionController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 6 1
1
<?php
2
3
namespace App\Controllers\Website;
4
5
use System\Controller as Controller;
6
7
class DataProtectionController extends Controller
8
{
9
  public function index()
10
  {
11
    $context = [
12
13
    ];
14
    return $this->PugView->render('website/pages/dataProtection', $context);
1 ignored issue
show
Bug Best Practice introduced by
The property PugView does not exist on App\Controllers\Website\DataProtectionController. Since you implemented __get, consider adding a @property annotation.
Loading history...
15
  }
16
}