Passed
Push — master ( 1cf0a9...56b73d )
by Ayan
01:37
created

Simple   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Phprest\Stub\Controller;
4
5
use Phprest\HttpFoundation\Response;
6
7
class Simple
8
{
9
    /**
10
     * @return int
11
     */
12
    public static function getTheAnswerOfEverything()
13
    {
14
        return 42;
15
    }
16
17
    /**
18
     * @return Response
19
     */
20
    public static function getSampleResponse()
21
    {
22
        return new Response('sample');
23
    }
24
}
25