Example   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 18
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A test() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: reallyli
5
 * Date: 18/10/11
6
 * Time: 下午2:49.
7
 */
8
9
namespace Reallyli\LaravelUnicomponent\Tests\Example;
10
11
class Example
12
{
13
    protected $test;
14
15
    /**
16
     * Method description: test.
17
     *
18
     * @author reallyli <[email protected]>
19
     * @since 18/10/11
20
     * @param
21
     * @return mixed
22
     * 返回值类型:string,array,object,mixed(多种,不确定的),void(无返回值)
23
     */
24
    public function test()
25
    {
26
        return __FUNCTION__;
27
    }
28
}
29