Passed
Push — master ( ac134b...e4d49b )
by Henri
01:15
created

User   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A my_account() 0 4 1
1
<?php
2
3
namespace Example\Controllers;
4
5
class User{
6
7
    public function my_account(array $data): void
8
    {
9
        var_dump($data['GET']);
0 ignored issues
show
Security Debugging Code introduced by
var_dump($data['GET']) looks like debug code. Are you sure you do not want to remove it?
Loading history...
10
        echo 'my_account';
11
    }
12
13
}