Foo   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
1
<?php
2
3
/**
4
 * I belong to a file
5
 */
6
7
namespace App\Acme;
8
9
/**
10
 * I belong to a class
11
 */
12
class Foo
13
{
14
    /**
15
     * Gets the name of the application.
16
     */
17
    public function getName()
18
    {
19
        return 'Nginx PHP MySQL';
20
    }
21
}
22