Passed
Push — master ( 68b87a...419ff0 )
by Siim
10:55
created

DefaultResponse::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: siim
5
 * Date: 18.01.19
6
 * Time: 9:11
7
 */
8
9
namespace Sf4\Api\Response;
10
11
class DefaultResponse extends AbstractResponse
12
{
13
    public function __construct()
14
    {
15
        parent::__construct();
16
        $this->setData([
17
            'message' => 'Test'
18
        ]);
19
    }
20
}
21