Sample   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A myMethod() 0 4 1
1
<?php
2
3
class Sample
4
{
5
    public function myMethod()
6
    {
7
        $xResponse = jaxon()->getResponse();
8
        $xResponse->alert('This is a response!!');
9
    }
10
}
11