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

DataProtectionController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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