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

User::my_account()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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