Test Failed
Branch improve-scrutinizer (33a448)
by Ayan
02:51
created

Simple   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 2
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