Passed
Push — master ( a7686a...8df1c1 )
by Siim
15:12
created

DefaultResponse::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
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 init()
14
    {
15
        $this->setData([
16
            'message' => 'Default'
17
        ]);
18
    }
19
}
20